diff options
Diffstat (limited to 'src/cmd/netstack/proto.h')
-rw-r--r-- | src/cmd/netstack/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/netstack/proto.h b/src/cmd/netstack/proto.h index 8ea11ac..701cb59 100644 --- a/src/cmd/netstack/proto.h +++ b/src/cmd/netstack/proto.h @@ -97,8 +97,9 @@ void tcp_listen( void (*on_recv)(void *carg), void (*on_close)(void *carg), void *carg); -struct tcp_conn *tcpc_new( +void tcp_connect( struct tcp t, + void (*on_conn)(struct tcp_conn *, void *carg), void (*on_recv)(void *carg), void (*on_close)(void *carg), void *carg); |