diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2024-07-26 15:51:10 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2024-07-26 15:51:10 +0000 |
commit | d8742079f432bd34e2607e31f100d9676d062dce (patch) | |
tree | 67e769089638bc5b9717751b90a267ad5936f8db /sys | |
parent | 41297f7385e65db13da17e3d9b15138d6d517ad5 (diff) |
Mark ipsecflowinfo immutable.
ok mvs
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/pipex_local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pipex_local.h b/sys/net/pipex_local.h index 4cfdb2f7fc0..dd9ec8c050e 100644 --- a/sys/net/pipex_local.h +++ b/sys/net/pipex_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex_local.h,v 1.52 2024/05/29 00:48:15 jsg Exp $ */ +/* $OpenBSD: pipex_local.h,v 1.53 2024/07/26 15:51:09 yasuoka Exp $ */ /* * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -140,6 +140,7 @@ struct pipex_l2tp_session { uint16_t peer_tunnel_id; /* [I] peer's tunnel-id */ uint32_t option_flags; /* [I] protocol options */ + uint32_t ipsecflowinfo; /* [I] IPsec SA flow id for NAT-T */ int16_t ns_gap; /* [s] gap between userland and pipex */ int16_t nr_gap; /* [s] gap between userland and pipex */ @@ -150,7 +151,6 @@ struct pipex_l2tp_session { uint16_t nr_nxt; /* [s] next sequence number to recv */ uint16_t nr_acked; /* [s] acked sequence number to recv */ - uint32_t ipsecflowinfo; /* [s] IPsec SA flow id for NAT-T */ }; #endif /* PIPEX_L2TP */ |