diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2021-05-15 08:07:21 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2021-05-15 08:07:21 +0000 |
commit | baa4c49f4f969a737bd74dd7fe64849d1f25e358 (patch) | |
tree | 40128586559f4fb8aa2678fd2f9869fe1ed14896 /share | |
parent | 3a8845da21e3cf2b878d8a55731e263eb77e5030 (diff) |
Fix IPsec NAT-T to work with pipex(4). Introduce a new packet tag
PACKET_TAG_IPSEC_FLOWINFO to specify the IPsec flow.
ok mvs
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mbuf_tags.9 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/share/man/man9/mbuf_tags.9 b/share/man/man9/mbuf_tags.9 index 424916d3d07..a71e45625c2 100644 --- a/share/man/man9/mbuf_tags.9 +++ b/share/man/man9/mbuf_tags.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf_tags.9,v 1.42 2021/05/12 23:17:30 yasuoka Exp $ +.\" $OpenBSD: mbuf_tags.9,v 1.43 2021/05/15 08:07:20 yasuoka Exp $ .\" .\" The author of this man page is Angelos D. Keromytis (angelos@cis.upenn.edu) .\" @@ -15,7 +15,7 @@ .\" MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR .\" PURPOSE. .\" -.Dd $Mdocdate: May 12 2021 $ +.Dd $Mdocdate: May 15 2021 $ .Dt M_TAG_GET 9 .Os .Sh NAME @@ -122,6 +122,11 @@ The tag contains a identifying the security association applied to the packet. This tag is primarily used to detect and avoid loops in IPsec processing on output. +.It PACKET_TAG_IPSEC_FLOWINFO +Used by the IPv4 stack to specify the IPsec flow of an output IP packet. +The tag contains a +.Va u_int32_t +identifying the IPsec flow. .It PACKET_TAG_WIREGUARD Used by the .Xr wg 4 |