HelenOS sources

tcp_conn_t         51 uspace/app/nterm/conn.c static tcp_conn_t *conn;
tcp_conn_t         56 uspace/app/nterm/conn.c static void conn_conn_reset(tcp_conn_t *);
tcp_conn_t         57 uspace/app/nterm/conn.c static void conn_data_avail(tcp_conn_t *);
tcp_conn_t         64 uspace/app/nterm/conn.c static void conn_conn_reset(tcp_conn_t *conn)
tcp_conn_t         69 uspace/app/nterm/conn.c static void conn_data_avail(tcp_conn_t *conn)
tcp_conn_t         65 uspace/app/websrv/websrv.c static void websrv_new_conn(tcp_listener_t *, tcp_conn_t *);
tcp_conn_t         78 uspace/app/websrv/websrv.c 	tcp_conn_t *conn;
tcp_conn_t        135 uspace/app/websrv/websrv.c static errno_t recv_create(tcp_conn_t *conn, recv_t **rrecv)
tcp_conn_t        227 uspace/app/websrv/websrv.c static errno_t send_response(tcp_conn_t *conn, const char *msg)
tcp_conn_t        243 uspace/app/websrv/websrv.c static errno_t uri_get(const char *uri, tcp_conn_t *conn)
tcp_conn_t        303 uspace/app/websrv/websrv.c static errno_t req_process(tcp_conn_t *conn, recv_t *recv)
tcp_conn_t        402 uspace/app/websrv/websrv.c static void websrv_new_conn(tcp_listener_t *lst, tcp_conn_t *conn)
tcp_conn_t         51 uspace/lib/http/include/http/http.h 	tcp_conn_t *conn;
tcp_conn_t         72 uspace/lib/inet/include/inet/tcp.h 	void (*connected)(tcp_conn_t *);
tcp_conn_t         73 uspace/lib/inet/include/inet/tcp.h 	void (*conn_failed)(tcp_conn_t *);
tcp_conn_t         74 uspace/lib/inet/include/inet/tcp.h 	void (*conn_reset)(tcp_conn_t *);
tcp_conn_t         75 uspace/lib/inet/include/inet/tcp.h 	void (*data_avail)(tcp_conn_t *);
tcp_conn_t         76 uspace/lib/inet/include/inet/tcp.h 	void (*urg_data)(tcp_conn_t *);
tcp_conn_t         81 uspace/lib/inet/include/inet/tcp.h 	void (*new_conn)(tcp_listener_t *, tcp_conn_t *);
tcp_conn_t        103 uspace/lib/inet/include/inet/tcp.h     tcp_conn_t **);
tcp_conn_t        104 uspace/lib/inet/include/inet/tcp.h extern void tcp_conn_destroy(tcp_conn_t *);
tcp_conn_t        105 uspace/lib/inet/include/inet/tcp.h extern void *tcp_conn_userptr(tcp_conn_t *);
tcp_conn_t        111 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_wait_connected(tcp_conn_t *);
tcp_conn_t        112 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_send(tcp_conn_t *, const void *, size_t);
tcp_conn_t        113 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_send_fin(tcp_conn_t *);
tcp_conn_t        114 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_push(tcp_conn_t *);
tcp_conn_t        115 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_reset(tcp_conn_t *);
tcp_conn_t        117 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_recv(tcp_conn_t *, void *, size_t, size_t *);
tcp_conn_t        118 uspace/lib/inet/include/inet/tcp.h extern errno_t tcp_conn_recv_wait(tcp_conn_t *, void *, size_t, size_t *);
tcp_conn_t         55 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        164 uspace/lib/inet/src/tcp.c     tcp_conn_t **rconn)
tcp_conn_t        166 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        168 uspace/lib/inet/src/tcp.c 	conn = calloc(1, sizeof(tcp_conn_t));
tcp_conn_t        210 uspace/lib/inet/src/tcp.c     tcp_conn_t **rconn)
tcp_conn_t        252 uspace/lib/inet/src/tcp.c void tcp_conn_destroy(tcp_conn_t *conn)
tcp_conn_t        277 uspace/lib/inet/src/tcp.c static errno_t tcp_conn_get(tcp_t *tcp, sysarg_t id, tcp_conn_t **rconn)
tcp_conn_t        279 uspace/lib/inet/src/tcp.c 	list_foreach(tcp->conn, ltcp, tcp_conn_t, conn) {
tcp_conn_t        294 uspace/lib/inet/src/tcp.c void *tcp_conn_userptr(tcp_conn_t *conn)
tcp_conn_t        426 uspace/lib/inet/src/tcp.c errno_t tcp_conn_wait_connected(tcp_conn_t *conn)
tcp_conn_t        450 uspace/lib/inet/src/tcp.c errno_t tcp_conn_send(tcp_conn_t *conn, const void *data, size_t bytes)
tcp_conn_t        481 uspace/lib/inet/src/tcp.c errno_t tcp_conn_send_fin(tcp_conn_t *conn)
tcp_conn_t        497 uspace/lib/inet/src/tcp.c errno_t tcp_conn_push(tcp_conn_t *conn)
tcp_conn_t        513 uspace/lib/inet/src/tcp.c errno_t tcp_conn_reset(tcp_conn_t *conn)
tcp_conn_t        541 uspace/lib/inet/src/tcp.c errno_t tcp_conn_recv(tcp_conn_t *conn, void *buf, size_t bsize, size_t *nrecv)
tcp_conn_t        589 uspace/lib/inet/src/tcp.c errno_t tcp_conn_recv_wait(tcp_conn_t *conn, void *buf, size_t bsize,
tcp_conn_t        640 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        668 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        696 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        724 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        765 uspace/lib/inet/src/tcp.c 	tcp_conn_t *conn;
tcp_conn_t        103 uspace/srv/hid/remcons/remcons.c static void remcons_new_conn(tcp_listener_t *lst, tcp_conn_t *conn);
tcp_conn_t        294 uspace/srv/hid/remcons/remcons.c static void remcons_new_conn(tcp_listener_t *lst, tcp_conn_t *conn)
tcp_conn_t         61 uspace/srv/hid/remcons/user.c telnet_user_t *telnet_user_create(tcp_conn_t *conn)
tcp_conn_t         55 uspace/srv/hid/remcons/user.h 	tcp_conn_t *conn;
tcp_conn_t         83 uspace/srv/hid/remcons/user.h extern telnet_user_t *telnet_user_create(tcp_conn_t *);
tcp_conn_t         45 uspace/srv/hid/rfb/rfb.c static void rfb_new_conn(tcp_listener_t *, tcp_conn_t *);
tcp_conn_t         63 uspace/srv/hid/rfb/rfb.c static errno_t recv_char(tcp_conn_t *conn, char *c)
tcp_conn_t         85 uspace/srv/hid/rfb/rfb.c recv_chars(tcp_conn_t *conn, char *c, size_t count)
tcp_conn_t         96 uspace/srv/hid/rfb/rfb.c static errno_t recv_skip_chars(tcp_conn_t *conn, size_t count)
tcp_conn_t        219 uspace/srv/hid/rfb/rfb.c recv_message(tcp_conn_t *conn, char type, void *buf, size_t size)
tcp_conn_t        489 uspace/srv/hid/rfb/rfb.c static errno_t rfb_send_framebuffer_update(rfb_t *rfb, tcp_conn_t *conn,
tcp_conn_t        589 uspace/srv/hid/rfb/rfb.c static void rfb_socket_connection(rfb_t *rfb, tcp_conn_t *conn)
tcp_conn_t        823 uspace/srv/hid/rfb/rfb.c static void rfb_new_conn(tcp_listener_t *lst, tcp_conn_t *conn)
tcp_conn_t         74 uspace/srv/net/tcp/conn.c static void tcp_conn_seg_process(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         75 uspace/srv/net/tcp/conn.c static void tcp_conn_tw_timer_set(tcp_conn_t *);
tcp_conn_t         76 uspace/srv/net/tcp/conn.c static void tcp_conn_tw_timer_clear(tcp_conn_t *);
tcp_conn_t         78 uspace/srv/net/tcp/conn.c static void tcp_conn_trim_seg_to_wnd(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t        113 uspace/srv/net/tcp/conn.c tcp_conn_t *tcp_conn_new(inet_ep2_t *epp)
tcp_conn_t        115 uspace/srv/net/tcp/conn.c 	tcp_conn_t *conn = NULL;
tcp_conn_t        119 uspace/srv/net/tcp/conn.c 	conn = calloc(1, sizeof(tcp_conn_t));
tcp_conn_t        213 uspace/srv/net/tcp/conn.c static void tcp_conn_free(tcp_conn_t *conn)
tcp_conn_t        239 uspace/srv/net/tcp/conn.c void tcp_conn_addref(tcp_conn_t *conn)
tcp_conn_t        253 uspace/srv/net/tcp/conn.c void tcp_conn_delref(tcp_conn_t *conn)
tcp_conn_t        271 uspace/srv/net/tcp/conn.c void tcp_conn_lock(tcp_conn_t *conn)
tcp_conn_t        280 uspace/srv/net/tcp/conn.c void tcp_conn_unlock(tcp_conn_t *conn)
tcp_conn_t        292 uspace/srv/net/tcp/conn.c void tcp_conn_delete(tcp_conn_t *conn)
tcp_conn_t        307 uspace/srv/net/tcp/conn.c errno_t tcp_conn_add(tcp_conn_t *conn)
tcp_conn_t        335 uspace/srv/net/tcp/conn.c static void tcp_conn_remove(tcp_conn_t *conn)
tcp_conn_t        347 uspace/srv/net/tcp/conn.c static void tcp_conn_state_set(tcp_conn_t *conn, tcp_cstate_t nstate)
tcp_conn_t        378 uspace/srv/net/tcp/conn.c void tcp_conn_sync(tcp_conn_t *conn)
tcp_conn_t        397 uspace/srv/net/tcp/conn.c void tcp_conn_fin_sent(tcp_conn_t *conn)
tcp_conn_t        427 uspace/srv/net/tcp/conn.c tcp_conn_t *tcp_conn_find_ref(inet_ep2_t *epp)
tcp_conn_t        431 uspace/srv/net/tcp/conn.c 	tcp_conn_t *conn;
tcp_conn_t        444 uspace/srv/net/tcp/conn.c 	conn = (tcp_conn_t *)arg;
tcp_conn_t        457 uspace/srv/net/tcp/conn.c void tcp_conn_reset(tcp_conn_t *conn)
tcp_conn_t        480 uspace/srv/net/tcp/conn.c static void tcp_reset_signal(tcp_conn_t *conn)
tcp_conn_t        491 uspace/srv/net/tcp/conn.c bool tcp_conn_got_syn(tcp_conn_t *conn)
tcp_conn_t        519 uspace/srv/net/tcp/conn.c static void tcp_conn_sa_listen(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        575 uspace/srv/net/tcp/conn.c static void tcp_conn_sa_syn_sent(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        662 uspace/srv/net/tcp/conn.c static void tcp_conn_sa_queue(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        696 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_rst(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        742 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_sp(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        755 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_syn(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        785 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_sr(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        812 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_est(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        863 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_fw1(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        883 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_fw2(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        899 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_cw(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        912 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_cls(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        933 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_la(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        954 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack_tw(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        967 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_ack(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t       1011 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_urg(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t       1023 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_text(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t       1108 uspace/srv/net/tcp/conn.c static cproc_t tcp_conn_seg_proc_fin(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t       1184 uspace/srv/net/tcp/conn.c static void tcp_conn_seg_process(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t       1229 uspace/srv/net/tcp/conn.c void tcp_conn_segment_arrived(tcp_conn_t *conn, inet_ep2_t *epp,
tcp_conn_t       1316 uspace/srv/net/tcp/conn.c 	tcp_conn_t *conn = (tcp_conn_t *) arg;
tcp_conn_t       1342 uspace/srv/net/tcp/conn.c void tcp_conn_tw_timer_set(tcp_conn_t *conn)
tcp_conn_t       1355 uspace/srv/net/tcp/conn.c void tcp_conn_tw_timer_clear(tcp_conn_t *conn)
tcp_conn_t       1368 uspace/srv/net/tcp/conn.c static void tcp_conn_trim_seg_to_wnd(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t         44 uspace/srv/net/tcp/conn.h extern tcp_conn_t *tcp_conn_new(inet_ep2_t *);
tcp_conn_t         45 uspace/srv/net/tcp/conn.h extern void tcp_conn_delete(tcp_conn_t *);
tcp_conn_t         46 uspace/srv/net/tcp/conn.h extern errno_t tcp_conn_add(tcp_conn_t *);
tcp_conn_t         47 uspace/srv/net/tcp/conn.h extern void tcp_conn_reset(tcp_conn_t *conn);
tcp_conn_t         48 uspace/srv/net/tcp/conn.h extern void tcp_conn_sync(tcp_conn_t *);
tcp_conn_t         49 uspace/srv/net/tcp/conn.h extern void tcp_conn_fin_sent(tcp_conn_t *);
tcp_conn_t         50 uspace/srv/net/tcp/conn.h extern tcp_conn_t *tcp_conn_find_ref(inet_ep2_t *);
tcp_conn_t         51 uspace/srv/net/tcp/conn.h extern void tcp_conn_addref(tcp_conn_t *);
tcp_conn_t         52 uspace/srv/net/tcp/conn.h extern void tcp_conn_delref(tcp_conn_t *);
tcp_conn_t         53 uspace/srv/net/tcp/conn.h extern void tcp_conn_lock(tcp_conn_t *);
tcp_conn_t         54 uspace/srv/net/tcp/conn.h extern void tcp_conn_unlock(tcp_conn_t *);
tcp_conn_t         55 uspace/srv/net/tcp/conn.h extern bool tcp_conn_got_syn(tcp_conn_t *);
tcp_conn_t         56 uspace/srv/net/tcp/conn.h extern void tcp_conn_segment_arrived(tcp_conn_t *, inet_ep2_t *,
tcp_conn_t         53 uspace/srv/net/tcp/iqueue.c void tcp_iqueue_init(tcp_iqueue_t *iqueue, tcp_conn_t *conn)
tcp_conn_t         40 uspace/srv/net/tcp/iqueue.h extern void tcp_iqueue_init(tcp_iqueue_t *, tcp_conn_t *);
tcp_conn_t         64 uspace/srv/net/tcp/seq_no.c bool seq_no_ack_acceptable(tcp_conn_t *conn, uint32_t seg_ack)
tcp_conn_t         75 uspace/srv/net/tcp/seq_no.c bool seq_no_ack_duplicate(tcp_conn_t *conn, uint32_t seg_ack)
tcp_conn_t         91 uspace/srv/net/tcp/seq_no.c bool seq_no_in_rcv_wnd(tcp_conn_t *conn, uint32_t sn)
tcp_conn_t        101 uspace/srv/net/tcp/seq_no.c bool seq_no_new_wnd_update(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        129 uspace/srv/net/tcp/seq_no.c bool seq_no_segment_ready(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        144 uspace/srv/net/tcp/seq_no.c bool seq_no_segment_acked(tcp_conn_t *conn, tcp_segment_t *seg, uint32_t ack)
tcp_conn_t        155 uspace/srv/net/tcp/seq_no.c bool seq_no_syn_acked(tcp_conn_t *conn)
tcp_conn_t        166 uspace/srv/net/tcp/seq_no.c bool seq_no_segment_acceptable(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        223 uspace/srv/net/tcp/seq_no.c void seq_no_seg_trim_calc(tcp_conn_t *conn, tcp_segment_t *seg,
tcp_conn_t        263 uspace/srv/net/tcp/seq_no.c int seq_no_seg_cmp(tcp_conn_t *conn, tcp_segment_t *sa, tcp_segment_t *sb)
tcp_conn_t         41 uspace/srv/net/tcp/seq_no.h extern bool seq_no_ack_acceptable(tcp_conn_t *, uint32_t);
tcp_conn_t         42 uspace/srv/net/tcp/seq_no.h extern bool seq_no_ack_duplicate(tcp_conn_t *, uint32_t);
tcp_conn_t         43 uspace/srv/net/tcp/seq_no.h extern bool seq_no_in_rcv_wnd(tcp_conn_t *, uint32_t);
tcp_conn_t         44 uspace/srv/net/tcp/seq_no.h extern bool seq_no_new_wnd_update(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         45 uspace/srv/net/tcp/seq_no.h extern bool seq_no_segment_acked(tcp_conn_t *, tcp_segment_t *, uint32_t);
tcp_conn_t         46 uspace/srv/net/tcp/seq_no.h extern bool seq_no_syn_acked(tcp_conn_t *);
tcp_conn_t         47 uspace/srv/net/tcp/seq_no.h extern bool seq_no_segment_ready(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         48 uspace/srv/net/tcp/seq_no.h extern bool seq_no_segment_acceptable(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         49 uspace/srv/net/tcp/seq_no.h extern void seq_no_seg_trim_calc(tcp_conn_t *, tcp_segment_t *, uint32_t *,
tcp_conn_t         51 uspace/srv/net/tcp/seq_no.h extern int seq_no_seg_cmp(tcp_conn_t *, tcp_segment_t *, tcp_segment_t *);
tcp_conn_t         66 uspace/srv/net/tcp/service.c static void tcp_service_cstate_change(tcp_conn_t *, void *, tcp_cstate_t);
tcp_conn_t         67 uspace/srv/net/tcp/service.c static void tcp_service_recv_data(tcp_conn_t *, void *);
tcp_conn_t         68 uspace/srv/net/tcp/service.c static void tcp_service_lst_cstate_change(tcp_conn_t *, void *, tcp_cstate_t);
tcp_conn_t         70 uspace/srv/net/tcp/service.c static errno_t tcp_cconn_create(tcp_client_t *, tcp_conn_t *, tcp_cconn_t **);
tcp_conn_t         90 uspace/srv/net/tcp/service.c static void tcp_service_cstate_change(tcp_conn_t *conn, void *arg,
tcp_conn_t        128 uspace/srv/net/tcp/service.c static void tcp_service_lst_cstate_change(tcp_conn_t *conn, void *arg,
tcp_conn_t        194 uspace/srv/net/tcp/service.c static void tcp_service_recv_data(tcp_conn_t *conn, void *arg)
tcp_conn_t        301 uspace/srv/net/tcp/service.c static errno_t tcp_cconn_create(tcp_client_t *client, tcp_conn_t *conn,
tcp_conn_t        348 uspace/srv/net/tcp/service.c static errno_t tcp_clistener_create(tcp_client_t *client, tcp_conn_t *conn,
tcp_conn_t        441 uspace/srv/net/tcp/service.c 	tcp_conn_t *conn;
tcp_conn_t        515 uspace/srv/net/tcp/service.c 	tcp_conn_t *conn;
tcp_conn_t        143 uspace/srv/net/tcp/tcp_type.h typedef void (*tcp_cstate_cb_t)(tcp_conn_t *, void *);
tcp_conn_t        147 uspace/srv/net/tcp/tcp_type.h 	void (*cstate_change)(tcp_conn_t *, void *, tcp_cstate_t);
tcp_conn_t        148 uspace/srv/net/tcp/tcp_type.h 	void (*recv_data)(tcp_conn_t *, void *);
tcp_conn_t        208 uspace/srv/net/tcp/tcp_type.h 	tcp_conn_t *conn;
tcp_conn_t        350 uspace/srv/net/tcp/tcp_type.h 	tcp_conn_t *conn;
tcp_conn_t        363 uspace/srv/net/tcp/tcp_type.h 	tcp_conn_t *conn;
tcp_conn_t         51 uspace/srv/net/tcp/test.c 	tcp_conn_t *conn;
tcp_conn_t         95 uspace/srv/net/tcp/test.c 	tcp_conn_t *conn;
tcp_conn_t         73 uspace/srv/net/tcp/test/conn.c 	tcp_conn_t *conn;
tcp_conn_t         89 uspace/srv/net/tcp/test/conn.c 	tcp_conn_t *conn, *cfound;
tcp_conn_t        119 uspace/srv/net/tcp/test/conn.c 	tcp_conn_t *conn;
tcp_conn_t        152 uspace/srv/net/tcp/test/conn.c 	tcp_conn_t *cconn, *sconn;
tcp_conn_t         43 uspace/srv/net/tcp/test/iqueue.c 	tcp_conn_t *conn;
tcp_conn_t         66 uspace/srv/net/tcp/test/iqueue.c 	tcp_conn_t *conn;
tcp_conn_t        112 uspace/srv/net/tcp/test/iqueue.c 	tcp_conn_t *conn;
tcp_conn_t         44 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t         81 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        108 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        145 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        192 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        225 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        247 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        294 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        363 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t        478 uspace/srv/net/tcp/test/seq_no.c 	tcp_conn_t *conn;
tcp_conn_t         74 uspace/srv/net/tcp/test/tqueue.c 	tcp_conn_t *conn;
tcp_conn_t         96 uspace/srv/net/tcp/test/tqueue.c 	tcp_conn_t *conn;
tcp_conn_t        126 uspace/srv/net/tcp/test/tqueue.c 	tcp_conn_t *conn;
tcp_conn_t        166 uspace/srv/net/tcp/test/tqueue.c 	tcp_conn_t *conn;
tcp_conn_t        209 uspace/srv/net/tcp/test/tqueue.c 	tcp_conn_t *conn;
tcp_conn_t         42 uspace/srv/net/tcp/test/ucall.c static void test_cstate_change(tcp_conn_t *, void *, tcp_cstate_t);
tcp_conn_t         43 uspace/srv/net/tcp/test/ucall.c static void test_conns_establish(tcp_conn_t **, tcp_conn_t **);
tcp_conn_t         44 uspace/srv/net/tcp/test/ucall.c static void test_conns_tear_down(tcp_conn_t *, tcp_conn_t *);
tcp_conn_t         87 uspace/srv/net/tcp/test/ucall.c 	tcp_conn_t *conn;
tcp_conn_t        112 uspace/srv/net/tcp/test/ucall.c 	tcp_conn_t *conn;
tcp_conn_t        130 uspace/srv/net/tcp/test/ucall.c 	tcp_conn_t *cconn, *sconn;
tcp_conn_t        141 uspace/srv/net/tcp/test/ucall.c 	tcp_conn_t *cconn, *sconn;
tcp_conn_t        200 uspace/srv/net/tcp/test/ucall.c 	tcp_conn_t *cconn, *sconn;
tcp_conn_t        238 uspace/srv/net/tcp/test/ucall.c static void test_cstate_change(tcp_conn_t *conn, void *arg,
tcp_conn_t        250 uspace/srv/net/tcp/test/ucall.c static void test_conns_establish(tcp_conn_t **rcconn, tcp_conn_t **rsconn)
tcp_conn_t        252 uspace/srv/net/tcp/test/ucall.c 	tcp_conn_t *cconn, *sconn;
tcp_conn_t        308 uspace/srv/net/tcp/test/ucall.c static void test_conns_tear_down(tcp_conn_t *cconn, tcp_conn_t *sconn)
tcp_conn_t         58 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_timer_set(tcp_conn_t *);
tcp_conn_t         59 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_timer_clear(tcp_conn_t *);
tcp_conn_t         60 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_seg(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         61 uspace/srv/net/tcp/tqueue.c static void tcp_conn_transmit_segment(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         62 uspace/srv/net/tcp/tqueue.c static void tcp_prepare_transmit_segment(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         63 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_send_immed(tcp_conn_t *, tcp_segment_t *);
tcp_conn_t         65 uspace/srv/net/tcp/tqueue.c errno_t tcp_tqueue_init(tcp_tqueue_t *tqueue, tcp_conn_t *conn,
tcp_conn_t        104 uspace/srv/net/tcp/tqueue.c void tcp_tqueue_ctrl_seg(tcp_conn_t *conn, tcp_control_t ctrl)
tcp_conn_t        117 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_seg(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        159 uspace/srv/net/tcp/tqueue.c static void tcp_prepare_transmit_segment(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        179 uspace/srv/net/tcp/tqueue.c void tcp_tqueue_new_data(tcp_conn_t *conn)
tcp_conn_t        245 uspace/srv/net/tcp/tqueue.c void tcp_tqueue_ack_received(tcp_conn_t *conn)
tcp_conn_t        291 uspace/srv/net/tcp/tqueue.c static void tcp_conn_transmit_segment(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        306 uspace/srv/net/tcp/tqueue.c void tcp_tqueue_send_immed(tcp_conn_t *conn, tcp_segment_t *seg)
tcp_conn_t        322 uspace/srv/net/tcp/tqueue.c 	tcp_conn_t *conn = (tcp_conn_t *) arg;
tcp_conn_t        370 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_timer_set(tcp_conn_t *conn)
tcp_conn_t        387 uspace/srv/net/tcp/tqueue.c static void tcp_tqueue_timer_clear(tcp_conn_t *conn)
tcp_conn_t         42 uspace/srv/net/tcp/tqueue.h extern errno_t tcp_tqueue_init(tcp_tqueue_t *, tcp_conn_t *,
tcp_conn_t         46 uspace/srv/net/tcp/tqueue.h extern void tcp_tqueue_ctrl_seg(tcp_conn_t *, tcp_control_t);
tcp_conn_t         47 uspace/srv/net/tcp/tqueue.h extern void tcp_tqueue_new_data(tcp_conn_t *);
tcp_conn_t         48 uspace/srv/net/tcp/tqueue.h extern void tcp_tqueue_ack_received(tcp_conn_t *);
tcp_conn_t         68 uspace/srv/net/tcp/ucall.c     tcp_open_flags_t oflags, tcp_conn_t **conn)
tcp_conn_t         70 uspace/srv/net/tcp/ucall.c 	tcp_conn_t *nconn;
tcp_conn_t        123 uspace/srv/net/tcp/ucall.c tcp_error_t tcp_uc_send(tcp_conn_t *conn, void *data, size_t size,
tcp_conn_t        180 uspace/srv/net/tcp/ucall.c tcp_error_t tcp_uc_receive(tcp_conn_t *conn, void *buf, size_t size,
tcp_conn_t        244 uspace/srv/net/tcp/ucall.c tcp_error_t tcp_uc_close(tcp_conn_t *conn)
tcp_conn_t        279 uspace/srv/net/tcp/ucall.c void tcp_uc_abort(tcp_conn_t *conn)
tcp_conn_t        289 uspace/srv/net/tcp/ucall.c void tcp_uc_status(tcp_conn_t *conn, tcp_conn_status_t *cstatus)
tcp_conn_t        301 uspace/srv/net/tcp/ucall.c void tcp_uc_delete(tcp_conn_t *conn)
tcp_conn_t        307 uspace/srv/net/tcp/ucall.c void tcp_uc_set_cb(tcp_conn_t *conn, tcp_cb_t *cb, void *arg)
tcp_conn_t        316 uspace/srv/net/tcp/ucall.c void *tcp_uc_get_userptr(tcp_conn_t *conn)
tcp_conn_t        328 uspace/srv/net/tcp/ucall.c 	tcp_conn_t *conn;
tcp_conn_t         46 uspace/srv/net/tcp/ucall.h     tcp_open_flags_t, tcp_conn_t **);
tcp_conn_t         47 uspace/srv/net/tcp/ucall.h extern tcp_error_t tcp_uc_send(tcp_conn_t *, void *, size_t, xflags_t);
tcp_conn_t         48 uspace/srv/net/tcp/ucall.h extern tcp_error_t tcp_uc_receive(tcp_conn_t *, void *, size_t, size_t *, xflags_t *);
tcp_conn_t         49 uspace/srv/net/tcp/ucall.h extern tcp_error_t tcp_uc_close(tcp_conn_t *);
tcp_conn_t         50 uspace/srv/net/tcp/ucall.h extern void tcp_uc_abort(tcp_conn_t *);
tcp_conn_t         51 uspace/srv/net/tcp/ucall.h extern void tcp_uc_status(tcp_conn_t *, tcp_conn_status_t *);
tcp_conn_t         52 uspace/srv/net/tcp/ucall.h extern void tcp_uc_delete(tcp_conn_t *);
tcp_conn_t         53 uspace/srv/net/tcp/ucall.h extern void tcp_uc_set_cb(tcp_conn_t *, tcp_cb_t *, void *);
tcp_conn_t         54 uspace/srv/net/tcp/ucall.h extern void *tcp_uc_get_userptr(tcp_conn_t *);
HelenOS homepage, sources at GitHub