Changeset 6df418c4 in mainline for uspace/srv/net/tl/tcp/conn.c
- Timestamp:
- 2011-10-24T04:23:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6e88fea
- Parents:
- f343a16
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/conn.c
rf343a16 r6df418c4 99 99 tcp_iqueue_init(&conn->incoming, conn); 100 100 101 /* Initialize retransmission queue */ 102 tcp_tqueue_init(&conn->retransmit, conn); 103 101 104 conn->cstate = st_listen; 105 conn->fin_is_acked = false; 102 106 conn->ident.local = *lsock; 103 107 if (fsock != NULL) … … 152 156 assert(false); 153 157 } 158 159 conn->fin_is_acked = false; 154 160 } 155 161 … … 525 531 return cp_done; 526 532 527 /* TODO */ 533 if (conn->fin_is_acked) { 534 log_msg(LVL_DEBUG, " FIN acked -> Fin-Wait-2"); 535 conn->cstate = st_fin_wait_2; 536 } 537 528 538 return cp_continue; 529 539 }
Note:
See TracChangeset
for help on using the changeset viewer.