forked from openbsd/ports
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
4 changed files
with
31 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ([email protected]) | ||
.\" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters