diff options
author | 2013-10-19 14:23:26 +0000 | |
---|---|---|
committer | 2013-10-19 14:23:26 +0000 | |
commit | 86f60cd3fd29854b34457cc16c763836aec8e368 (patch) | |
tree | ed2ab892367879af53589099f8a30d0627c36ead | |
parent | Fix receipt of OID varbinds when sending traps (diff) | |
download | wireguard-openbsd-86f60cd3fd29854b34457cc16c763836aec8e368.tar.xz wireguard-openbsd-86f60cd3fd29854b34457cc16c763836aec8e368.zip |
forgot the cookies
-rw-r--r-- | sys/net/if_vxlan.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/net/if_vxlan.h b/sys/net/if_vxlan.h index 192f55e59e7..ab81ff5d332 100644 --- a/sys/net/if_vxlan.h +++ b/sys/net/if_vxlan.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vxlan.h,v 1.2 2013/10/14 14:04:22 reyk Exp $ */ +/* $OpenBSD: if_vxlan.h,v 1.3 2013/10/19 14:23:26 reyk Exp $ */ /* * Copyright (c) 2013 Reyk Floeter <reyk@openbsd.org> @@ -45,7 +45,11 @@ struct vxlanudpiphdr { struct vxlan_softc { struct arpcom sc_ac; struct ifmedia sc_media; + struct ip_moptions sc_imo; + void *sc_ahcookie; + void *sc_lhcookie; + struct sockaddr_storage sc_src; struct sockaddr_storage sc_dst; in_port_t sc_dstport; |