diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-02-11 00:25:34 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-02-11 00:25:34 +0000 |
commit | 21071879e8db17ed81602127a4dc9d3f92293c56 (patch) | |
tree | d997b42a7325bf039ff8ecf5094c685846393b53 /sys | |
parent | 861dac9b254ca71c5a0ca81fcbdf5271ad920c44 (diff) |
In ddb add description for show mbuf flags bit SYNCOOKIE_RECREATED
of struct pkthdr_pf.
from Jan Klemkow
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index c6c5853863d..8f20f613d23 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.241 2018/12/07 08:37:24 claudio Exp $ */ +/* $OpenBSD: mbuf.h,v 1.242 2019/02/11 00:25:33 bluhm Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -119,8 +119,8 @@ struct pkthdr_pf { #ifdef _KERNEL #define MPF_BITS \ - ("\20\1GENERATED\3TRANSLATE_LOCALHOST\4DIVERTED\5DIVERTED_PACKET" \ - "\6REROUTE\7REFRAGMENTED\10PROCESSED") + ("\20\1GENERATED\2SYNCOOKIE_RECREATED\3TRANSLATE_LOCALHOST\4DIVERTED" \ + "\5DIVERTED_PACKET\6REROUTE\7REFRAGMENTED\10PROCESSED") #endif /* record/packet header in first mbuf of chain; valid if M_PKTHDR set */ |