Fix bug in definition of tcp_header_t

Change-Id: Ic814b805ef77913ffe86f82c009602c75258acfb
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
This commit is contained in:
Juraj Sloboda
2017-02-15 10:22:30 +01:00
parent 33e2dc078b
commit 12ba252193

View File

@ -76,7 +76,10 @@ typedef struct
};
u32 src_and_dst;
} ports;
u16 src_port, dst_port;
struct
{
u16 src_port, dst_port;
};
};
/* Sequence and acknowledgment number. */