Changeset 74c99b5 in mainline for uspace/srv/net/tl/tcp/ucall.c


Ignore:
Timestamp:
2011-12-09T18:59:16Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cd79391
Parents:
03be171
Message:

Segments in retransmission queue need to have SEQ set.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/ucall.c

    r03be171 r74c99b5  
    260260                tcp_conn_segment_arrived(conn, seg);
    261261        } else {
     262                if (conn == NULL)
     263                        log_msg(LVL_WARN, "No connection found.");
     264                else
     265                        log_msg(LVL_WARN, "Connection is closed.");
    262266                tcp_unexpected_segment(sp, seg);
    263267        }
Note: See TracChangeset for help on using the changeset viewer.