Changeset eb522e8 in mainline for uspace/srv/net/tl/tcp/tcp.h
- Timestamp:
- 2011-06-01T08:43:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6c1f1
- Parents:
- 9e2e715 (diff), e51a514 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/tcp.h
r9e2e715 reb522e8 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.