Changeset a7811f17 in mainline for uspace/srv/net/tl/tcp/tcp.h
- Timestamp:
- 2010-11-19T21:28:02Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a9c6b966
- Parents:
- 45f04f8 (diff), aaa3f33a (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
r45f04f8 ra7811f17 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.