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