Changes in uspace/srv/net/tcp/std.h [1d24ad3:69a93df7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/std.h
r1d24ad3 r69a93df7 39 39 40 40 #include <sys/types.h> 41 #include <inet/addr.h>42 43 #define IP_PROTO_TCP 644 41 45 42 /** TCP Header (fixed part) */ … … 75 72 }; 76 73 77 /** TCP IPv4pseudo header */74 /** TCP pseudo header */ 78 75 typedef struct { 79 76 /** Source address */ 80 uint32_t src ;77 uint32_t src_addr; 81 78 /** Destination address */ 82 uint32_t dest ;79 uint32_t dest_addr; 83 80 /** Zero */ 84 81 uint8_t zero; … … 88 85 uint16_t tcp_length; 89 86 } tcp_phdr_t; 90 91 /** TCP IPv6 pseudo header */92 typedef struct {93 /** Source address */94 addr128_t src;95 /** Destination address */96 addr128_t dest;97 /** TCP length */98 uint32_t tcp_length;99 /** Zeroes */100 uint8_t zero[3];101 /** Next header */102 uint8_t next;103 } tcp_phdr6_t;104 87 105 88 /** Option kind */
Note:
See TracChangeset
for help on using the changeset viewer.