Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tcp/std.h

    r1d24ad3 r69a93df7  
    3939
    4040#include <sys/types.h>
    41 #include <inet/addr.h>
    42 
    43 #define IP_PROTO_TCP  6
    4441
    4542/** TCP Header (fixed part) */
     
    7572};
    7673
    77 /** TCP IPv4 pseudo header */
     74/** TCP pseudo header */
    7875typedef struct {
    7976        /** Source address */
    80         uint32_t src;
     77        uint32_t src_addr;
    8178        /** Destination address */
    82         uint32_t dest;
     79        uint32_t dest_addr;
    8380        /** Zero */
    8481        uint8_t zero;
     
    8885        uint16_t tcp_length;
    8986} 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;
    10487
    10588/** Option kind */
Note: See TracChangeset for help on using the changeset viewer.