Changes in uspace/srv/net/tl/tcp/tcp.h [89e57cee:aaa3f33a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/tcp.h
r89e57cee raaa3f33a 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. … … 272 262 uint16_t dest_port; 273 263 /** Parent local sockets. */ 274 socket_cores_ reflocal_sockets;264 socket_cores_t *local_sockets; 275 265 276 266 /** Local sockets safety lock.
Note:
See TracChangeset
for help on using the changeset viewer.