diff options
Diffstat (limited to 'src/pevent.h')
-rw-r--r-- | src/pevent.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pevent.h b/src/pevent.h index c7b61e1..d6927f6 100644 --- a/src/pevent.h +++ b/src/pevent.h @@ -21,6 +21,8 @@ typedef struct event_ctx { } event_ctx; typedef int (*on_event_cb) (event_ctx *ev_ctx, int fd, void *user_data); +typedef int (*on_data_cb) (event_ctx *ev_ctx, int src_fd, int dst_fd, + char *buf, size_t siz, void *user_data); void event_init(event_ctx **ctx); @@ -36,6 +38,7 @@ int event_add_fd(event_ctx *ctx, int fd); int event_loop(event_ctx *ctx, on_event_cb on_event, void *user_data); forward_state -event_forward_connection(event_ctx *ctx, int dest_fd); +event_forward_connection(event_ctx *ctx, int dest_fd, on_data_cb on_data, + void *user_data); #endif |