diff options
author | 2000-06-19 02:51:29 +0000 | |
---|---|---|
committer | 2000-06-19 02:51:29 +0000 | |
commit | c2329aa109a0e3fddb06c0ac3c38a7e471c77684 (patch) | |
tree | 7651f9301af2fbaccc4b6df06d1305f69e61aeeb | |
parent | add authentication-only handling (easy setup). (diff) | |
download | wireguard-openbsd-c2329aa109a0e3fddb06c0ac3c38a7e471c77684.tar.xz wireguard-openbsd-c2329aa109a0e3fddb06c0ac3c38a7e471c77684.zip |
oops, add macbuf to the queue structure
-rw-r--r-- | sys/dev/pci/ubsecvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/ubsecvar.h b/sys/dev/pci/ubsecvar.h index 031b8170642..090b7e4838f 100644 --- a/sys/dev/pci/ubsecvar.h +++ b/sys/dev/pci/ubsecvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ubsecvar.h,v 1.4 2000/06/13 05:15:19 jason Exp $ */ +/* $OpenBSD: ubsecvar.h,v 1.5 2000/06/19 02:51:29 jason Exp $ */ /* * Copyright (c) 2000 Theo de Raadt @@ -59,6 +59,7 @@ struct ubsec_q { long q_dst_packp[MAX_SCATTER]; int q_dst_packl[MAX_SCATTER]; int q_dst_npa, q_dst_l; + u_int32_t q_macbuf[5]; }; /* Maximum queue length */ |