Changeset e8975278 in mainline for uspace/srv/net/tcp/conn.c
- Timestamp:
- 2018-05-10T15:14:02Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1420cae9
- Parents:
- ae7d03c
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-10 07:53:56)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-10 15:14:02)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/conn.c
rae7d03c re8975278 1186 1186 tcp_segment_dump(seg); 1187 1187 1188 /* Check whether segment is acceptable */1189 /* XXX Permit valid ACKs, URGs and RSTs */1190 /* if (!seq_no_segment_acceptable(conn, seg)) {1191 log_msg(LOG_DEFAULT, LVL_WARN, "Segment not acceptable, dropping.");1192 if ((seg->ctrl & CTL_RST) == 0) {1193 tcp_tqueue_ctrl_seg(conn, CTL_ACK);1194 }1195 return;1196 }1197 */1198 1199 1188 if (tcp_conn_seg_proc_rst(conn, seg) == cp_done) 1200 1189 return;
Note:
See TracChangeset
for help on using the changeset viewer.