Changeset 1d24ad3 in mainline for uspace/srv/net/udp/std.h
- Timestamp:
- 2013-07-03T14:20:04Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8b47eca
- Parents:
- 02a09ed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/std.h
r02a09ed r1d24ad3 54 54 } udp_header_t; 55 55 56 /** UDP pseudo header */56 /** UDP IPv4 pseudo header */ 57 57 typedef struct { 58 58 /** Source address */ … … 68 68 } udp_phdr_t; 69 69 70 /** UDP IPv6 pseudo header */ 71 typedef struct { 72 /** Source address */ 73 addr128_t src_addr; 74 /** Destination address */ 75 addr128_t dest_addr; 76 /** UDP length */ 77 uint32_t udp_length; 78 /** Reserved */ 79 uint8_t zero[3]; 80 /** Next header */ 81 uint8_t next; 82 } udp_phdr6_t; 83 70 84 #endif 71 85
Note:
See TracChangeset
for help on using the changeset viewer.