Changes in uspace/srv/net/tcp/conn.c [3e2291a9:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/conn.c
r3e2291a9 rb7fd2a0 84 84 85 85 /** Initialize connections. */ 86 int tcp_conns_init(void)87 { 88 int rc;86 errno_t tcp_conns_init(void) 87 { 88 errno_t rc; 89 89 90 90 rc = amap_create(&amap); … … 303 303 * Add connection to the connection map. 304 304 */ 305 int tcp_conn_add(tcp_conn_t *conn)305 errno_t tcp_conn_add(tcp_conn_t *conn) 306 306 { 307 307 inet_ep2_t aepp; 308 int rc;308 errno_t rc; 309 309 310 310 tcp_conn_addref(conn); … … 425 425 tcp_conn_t *tcp_conn_find_ref(inet_ep2_t *epp) 426 426 { 427 int rc;427 errno_t rc; 428 428 void *arg; 429 429 tcp_conn_t *conn; … … 1242 1242 inet_ep2_t aepp; 1243 1243 inet_ep2_t oldepp; 1244 int rc;1244 errno_t rc; 1245 1245 1246 1246 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_segment_arrived(%p)",
Note:
See TracChangeset
for help on using the changeset viewer.