diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-02-05 14:40:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-02-05 14:40:41 +0000 |
commit | 08d997804215097a2147a9f4bbe81f8cf62516d7 (patch) | |
tree | a55dae43f3b3bc732fd1f33be9ed504509981a24 /share | |
parent | 42dc45749dabe4fb353693d6859dd0c4923f6d83 (diff) |
document that ip_off and ip_len are now in network byte order
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/ip.4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/man/man4/ip.4 b/share/man/man4/ip.4 index cfb7cfdf7c7..c351178e1c1 100644 --- a/share/man/man4/ip.4 +++ b/share/man/man4/ip.4 @@ -324,9 +324,13 @@ the fields of the IP header, including the following: ip->ip_v = IPVERSION; ip->ip_hl = hlen >> 2; ip->ip_id = 0; /* 0 means kernel set appropriate value */ -ip->ip_off = offset; +ip->ip_off = htons(offset); +ip->ip_len = htons(len); .Ed .sp .5 +Additionally note that starting with +.Tn OpenBSD 2.1 +the ip_off and ip_len fields are in network byte order. If the header source address is set to .Dv INADDR_ANY, the kernel will choose an appropriate address. |