diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-11 20:13:12 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-11 20:13:12 +0000 |
commit | 20ebc3b2792a34fd89d0895fd305ba5f7a6e369c (patch) | |
tree | 8f7fe4e0fca4cab50e84bf6a14e1d9877ae4119e /sys | |
parent | 755a784ce04a93539b8bf7fe60707fcd97ecd650 (diff) |
pad the pf_state_{host,peer} to a 32bit quantity; dhartmei@ frantzen@ ok
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/pfvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index dd40551847e..91f12649109 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.60 2002/01/09 11:30:53 dhartmei Exp $ */ +/* $OpenBSD: pfvar.h,v 1.61 2002/01/11 20:13:11 mickey Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -245,6 +245,7 @@ struct pf_rule { struct pf_state_host { struct pf_addr addr; u_int16_t port; + u_int16_t pad; }; struct pf_state_peer { @@ -253,6 +254,7 @@ struct pf_state_peer { u_int32_t seqdiff; /* Sequence number modulator */ u_int16_t max_win; u_int8_t state; + u_int8_t pad; }; struct pf_state { |