Changes in uspace/srv/net/tl/tcp/tcp.h [28a3e74:89e57cee] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/tcp.h
r28a3e74 r89e57cee 55 55 typedef struct tcp_socket_data tcp_socket_data_t; 56 56 57 /** Type definition of the TCP socket specific data pointer. 58 * @see tcp_socket_data 59 */ 60 typedef tcp_socket_data_t *tcp_socket_data_ref; 61 57 62 /** Type definition of the TCP operation data. 58 63 * @see tcp_operation 59 64 */ 60 65 typedef struct tcp_operation tcp_operation_t; 66 67 /** Type definition of the TCP operation data pointer. 68 * @see tcp_operation 69 */ 70 typedef tcp_operation_t *tcp_operation_ref; 61 71 62 72 /** TCP socket state type definition. … … 190 200 int backlog; 191 201 202 // /** Segment size. */ 203 // size_t segment_size; 204 192 205 /** 193 206 * Parent listening socket identifier. … … 236 249 * Packets metric is set as their data length. 237 250 */ 238 packet_t *incoming;251 packet_t incoming; 239 252 240 253 /** Outgoing packet queue. … … 246 259 * Packets metric is set as their data length. 247 260 */ 248 packet_t *outgoing;261 packet_t outgoing; 249 262 250 263 /** IP pseudo header. */ … … 259 272 uint16_t dest_port; 260 273 /** Parent local sockets. */ 261 socket_cores_ t *local_sockets;274 socket_cores_ref local_sockets; 262 275 263 276 /** Local sockets safety lock.
Note:
See TracChangeset
for help on using the changeset viewer.