Changeset 2f19103 in mainline for uspace/srv/net/tcp/conn.h
- Timestamp:
- 2015-05-22T07:21:37Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 58e9dec
- Parents:
- bf7587b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/conn.h
rbf7587b0 r2f19103 1 1 /* 2 * Copyright (c) 201 1Jiri Svoboda2 * Copyright (c) 2015 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 36 36 #define CONN_H 37 37 38 #include <inet/endpoint.h> 38 39 #include <stdbool.h> 39 40 #include "tcp_type.h" 40 41 41 extern tcp_conn_t *tcp_conn_new( tcp_sock_t *, tcp_sock_t *);42 extern tcp_conn_t *tcp_conn_new(inet_ep2_t *); 42 43 extern void tcp_conn_delete(tcp_conn_t *); 43 44 extern void tcp_conn_add(tcp_conn_t *); … … 47 48 extern void tcp_conn_fin_sent(tcp_conn_t *); 48 49 extern void tcp_conn_ack_of_fin_rcvd(tcp_conn_t *); 49 extern tcp_conn_t *tcp_conn_find_ref( tcp_sockpair_t *);50 extern tcp_conn_t *tcp_conn_find_ref(inet_ep2_t *); 50 51 extern void tcp_conn_addref(tcp_conn_t *); 51 52 extern void tcp_conn_delref(tcp_conn_t *); … … 55 56 extern void tcp_conn_segment_arrived(tcp_conn_t *, tcp_segment_t *); 56 57 extern void tcp_conn_trim_seg_to_wnd(tcp_conn_t *, tcp_segment_t *); 57 extern void tcp_unexpected_segment( tcp_sockpair_t *, tcp_segment_t *);58 extern void tcp_ sockpair_flipped(tcp_sockpair_t *, tcp_sockpair_t *);59 extern void tcp_reply_rst( tcp_sockpair_t *, tcp_segment_t *);58 extern void tcp_unexpected_segment(inet_ep2_t *, tcp_segment_t *); 59 extern void tcp_ep2_flipped(inet_ep2_t *, inet_ep2_t *); 60 extern void tcp_reply_rst(inet_ep2_t *, tcp_segment_t *); 60 61 61 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.