Last change
on this file since 2376 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
245 bytes
|
Line | |
---|
1 | #ifndef _IP_H
|
---|
2 | #define _IP_H
|
---|
3 |
|
---|
4 | struct iphdr {
|
---|
5 | uint8_t verhdrlen;
|
---|
6 | uint8_t service;
|
---|
7 | uint16_t len;
|
---|
8 | uint16_t ident;
|
---|
9 | uint16_t frags;
|
---|
10 | uint8_t ttl;
|
---|
11 | uint8_t protocol;
|
---|
12 | uint16_t chksum;
|
---|
13 | in_addr src;
|
---|
14 | in_addr dest;
|
---|
15 | } PACKED;
|
---|
16 |
|
---|
17 | #endif /* _IP_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.