Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3f5f6d15
Commit
3f5f6d15
authored
Oct 24, 2002
by
Alexey Kuznetsov
Committed by
Hideaki Yoshifuji
Oct 24, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/linux/ip.h: Define AH/ESP header layout.
parent
4841636a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
include/linux/ip.h
include/linux/ip.h
+15
-0
No files found.
include/linux/ip.h
View file @
3f5f6d15
...
...
@@ -192,4 +192,19 @@ struct iphdr {
/*The options start here. */
};
struct
ip_auth_hdr
{
__u8
nexthdr
;
__u8
hdrlen
;
/* This one is measured in 32 bit units! */
__u16
reserved
;
__u32
spi
;
__u32
seq_no
;
/* Sequence number */
__u8
auth_data
[
4
];
/* Variable len but >=4. Mind the 64 bit alignment! */
};
struct
ip_esp_hdr
{
__u32
spi
;
__u32
seq_no
;
/* Sequence number */
__u8
enc_data
[
8
];
/* Variable len but >=8. Mind the 64 bit alignment! */
};
#endif
/* _LINUX_IP_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment