Changes in uspace/srv/net/tcp/conn.c [b243da3:c0f3460] in mainline
- File:
-
- 1 edited
-
uspace/srv/net/tcp/conn.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/conn.c
rb243da3 rc0f3460 360 360 fibril_mutex_lock(&conn_list_lock); 361 361 362 list_foreach(conn_list, link, tcp_conn_t, conn) { 362 list_foreach(conn_list, link) { 363 tcp_conn_t *conn = list_get_instance(link, tcp_conn_t, link); 363 364 tcp_sockpair_t *csp = &conn->ident; 364 365 … … 381 382 * @param conn Connection 382 383 */ 383 void tcp_conn_reset(tcp_conn_t *conn)384 static void tcp_conn_reset(tcp_conn_t *conn) 384 385 { 385 386 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_reset()", conn->name);
Note:
See TracChangeset
for help on using the changeset viewer.
