From: deraadt Date: Wed, 1 Dec 2021 21:48:00 +0000 (+0000) Subject: mention that the "flags" field in the enchdr is uses m_flags values X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=45b43d797e77b465fb731565d65489da903f539d;p=openbsd mention that the "flags" field in the enchdr is uses m_flags values (see mbuf.h) --- diff --git a/sys/net/if_enc.h b/sys/net/if_enc.h index c9da6b2ab30..26fea18354d 100644 --- a/sys/net/if_enc.h +++ b/sys/net/if_enc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_enc.h,v 1.12 2014/12/08 10:46:14 mpi Exp $ */ +/* $OpenBSD: if_enc.h,v 1.13 2021/12/01 21:48:00 deraadt Exp $ */ /* * Copyright (c) 2010 Reyk Floeter @@ -25,7 +25,7 @@ struct enchdr { u_int32_t af; u_int32_t spi; - u_int32_t flags; + u_int32_t flags; /* similar to mbuf m_flags */ }; #ifdef _KERNEL