mbuf.c (357b9ac1) | mbuf.c (ae5feee3) |
---|---|
1/* $OpenBSD: mbuf.c,v 1.23 2005/05/23 17:35:59 marius Exp $ */ | 1/* $OpenBSD: mbuf.c,v 1.24 2005/12/21 01:40:24 millert Exp $ */ |
2/* $NetBSD: mbuf.c,v 1.9 1996/05/07 02:55:03 thorpej Exp $ */ 3 4/* 5 * Copyright (c) 1983, 1988, 1993 6 * The Regents of the University of California. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions --- 19 unchanged lines hidden (view full) --- 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33#ifndef lint 34#if 0 35static char sccsid[] = "from: @(#)mbuf.c 8.1 (Berkeley) 6/6/93"; 36#else | 2/* $NetBSD: mbuf.c,v 1.9 1996/05/07 02:55:03 thorpej Exp $ */ 3 4/* 5 * Copyright (c) 1983, 1988, 1993 6 * The Regents of the University of California. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions --- 19 unchanged lines hidden (view full) --- 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33#ifndef lint 34#if 0 35static char sccsid[] = "from: @(#)mbuf.c 8.1 (Berkeley) 6/6/93"; 36#else |
37static char *rcsid = "$OpenBSD: mbuf.c,v 1.23 2005/05/23 17:35:59 marius Exp $"; | 37static char *rcsid = "$OpenBSD: mbuf.c,v 1.24 2005/12/21 01:40:24 millert Exp $"; |
38#endif 39#endif /* not lint */ 40 41#include <sys/param.h> 42#include <sys/protosw.h> 43#include <sys/socket.h> 44#include <sys/mbuf.h> 45#include <sys/pool.h> 46#include <sys/sysctl.h> | 38#endif 39#endif /* not lint */ 40 41#include <sys/param.h> 42#include <sys/protosw.h> 43#include <sys/socket.h> 44#include <sys/mbuf.h> 45#include <sys/pool.h> 46#include <sys/sysctl.h> |
47#include <sys/errno.h> | |
48 | 47 |
48#include <errno.h> |
|
49#include <kvm.h> 50#include <limits.h> 51#include <stdio.h> 52#include <string.h> 53#include <unistd.h> 54#include "netstat.h" 55 56#define YES 1 --- 138 unchanged lines hidden --- | 49#include <kvm.h> 50#include <limits.h> 51#include <stdio.h> 52#include <string.h> 53#include <unistd.h> 54#include "netstat.h" 55 56#define YES 1 --- 138 unchanged lines hidden --- |