Changes in uspace/srv/net/tl/udp/udp.h [21580dd:aadf01e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp.h
r21580dd raadf01e 54 54 /** Networking module phone. 55 55 */ 56 int 56 int net_phone; 57 57 /** IP module phone. 58 58 */ 59 int 59 int ip_phone; 60 60 /** ICMP module phone. 61 61 */ 62 int 62 int icmp_phone; 63 63 /** Packet dimension. 64 64 */ 65 packet_dimension_t 65 packet_dimension_t packet_dimension; 66 66 /** Indicates whether UDP checksum computing is enabled. 67 67 */ 68 int 68 int checksum_computing; 69 69 /** Indicates whether UDP autobnding on send is enabled. 70 70 */ 71 int 71 int autobinding; 72 72 /** Last used free port. 73 73 */ 74 int 74 int last_used_port; 75 75 /** Active sockets. 76 76 */ 77 socket_ports_t 77 socket_ports_t sockets; 78 78 /** Device packet dimensions. 79 79 */ 80 packet_dimensions_t 80 packet_dimensions_t dimensions; 81 81 /** Safety lock. 82 82 */ 83 fibril_rwlock_t 83 fibril_rwlock_t lock; 84 84 }; 85 85
Note:
See TracChangeset
for help on using the changeset viewer.