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