Changes in uspace/srv/net/tcp/ucall.c [8499160:797dc79e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/ucall.c
r8499160 r797dc79e 108 108 assert(nconn->cstate == st_closed); 109 109 tcp_conn_unlock(nconn); 110 tcp_conn_delete(nconn); 110 111 return TCP_ERESET; 111 112 } … … 280 281 { 281 282 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_abort()"); 283 284 tcp_conn_lock(conn); 285 tcp_conn_reset(conn); 286 tcp_conn_unlock(conn); 282 287 } 283 288
Note:
See TracChangeset
for help on using the changeset viewer.