Changeset 03be171 in mainline for uspace/srv/net/tl/tcp/conn.c


Ignore:
Timestamp:
2011-12-09T17:36:44Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74c99b5
Parents:
d9e14fa4
Message:

Fix bug in RST processing.

File:
1 edited

Legend:

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

    rd9e14fa4 r03be171  
    502502static cproc_t tcp_conn_seg_proc_rst(tcp_conn_t *conn, tcp_segment_t *seg)
    503503{
     504        if ((seg->ctrl & CTL_RST) == 0)
     505                return cp_continue;
     506
    504507        switch (conn->cstate) {
    505508        case st_syn_received:
Note: See TracChangeset for help on using the changeset viewer.