Changeset d9e14fa4 in mainline for uspace/srv/net/tl/tcp/tcp_type.h


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

Implement RST processing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/tcp_type.h

    r0ac2158 rd9e14fa4  
    147147} tcp_tqueue_t;
    148148
     149typedef enum {
     150        ap_active,
     151        ap_passive
     152} acpass_t;
     153
    149154typedef struct tcp_conn {
    150155        char *name;
     
    154159        tcp_sockpair_t ident;
    155160
     161        /** Active or passive connection */
     162        acpass_t ap;
     163
    156164        /** Connection state */
    157165        tcp_cstate_t cstate;
     166        /** True if connection was reset */
     167        bool reset;
    158168        /** Protects @c cstate */
    159169        fibril_mutex_t cstate_lock;
     
    245255} tcp_segment_t;
    246256
    247 typedef enum {
    248         ap_active,
    249         ap_passive
    250 } acpass_t;
    251257
    252258typedef struct {
Note: See TracChangeset for help on using the changeset viewer.