diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-06-16 11:17:03 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-06-16 11:17:03 +0000 |
commit | 6fa7d44923e49104576ee0552485e60c0b0cf75f (patch) | |
tree | 7f26c305d11234a39fec552378e76989b8c50e99 /share | |
parent | 3a3f3f5b2a66fdcf27f621f80a6d0a6d22bfaace (diff) |
Sync with recent changes.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mbuf.9 | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index dc90145d7b3..e47391846c8 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.85 2015/02/19 05:53:46 dlg Exp $ +.\" $OpenBSD: mbuf.9,v 1.86 2015/06/16 11:17:02 mpi Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: February 19 2015 $ +.Dd $Mdocdate: June 16 2015 $ .Dt MBUF 9 .Os .Sh NAME @@ -186,16 +186,16 @@ struct m_hdr { }; struct pkthdr { - struct ifnet *rcvif; + void *ph_cookie; SLIST_HEAD(packet_tags, m_tag) tags; - int len; - u_int16_t tagsset; - u_int16_t pad; - u_int16_t csum_flags; - u_int16_t ether_vtag; - u_int ph_rtableid; - void *ph_cookie; - struct pkthdr_pf pf; + int len; + u_int16_t tagsset; + u_int16_t pad; + u_int16_t csum_flags; + u_int16_t ether_vtag; + u_int ph_rtableid; + u_int ph_ifidx; + struct pkthdr_pf pf; }; struct pkthdr_pf { |