Changeset 9362cc2 in mainline
- Timestamp:
- 2015-06-06T15:48:36Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8499160
- Parents:
- 7c15d6f
- Location:
- uspace/srv/net/tcp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/conn.c
r7c15d6f r9362cc2 412 412 { 413 413 log_msg(LOG_DEFAULT, LVL_DEBUG, "%s: tcp_conn_reset()", conn->name); 414 conn->reset = true; 414 415 tcp_conn_state_set(conn, st_closed); 415 conn->reset = true;416 416 417 417 tcp_conn_tw_timer_clear(conn); -
uspace/srv/net/tcp/service.c
r7c15d6f r9362cc2 94 94 95 95 if (old_state != st_closed && nstate == st_closed && conn->reset) { 96 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_service_cstate_change: " 97 "Connection reset"); 96 98 /* Connection reset */ 97 99 tcp_ev_conn_reset(cconn); 100 } else { 101 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_service_cstate_change: " 102 "old_state=%d nstate=%d conn->reset=%d", 103 old_state, nstate, conn->reset); 98 104 } 99 105
Note:
See TracChangeset
for help on using the changeset viewer.