summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-08 14:39:01 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-08 14:39:01 +0000
commit4c83d889ccdb8f97e17c1a9cb4e49bf021075f47 (patch)
tree92b8682bcd01e76fa5308311f8243207eee51bd7 /sys/net
parentbbe0d8276243644d21fefc49fc009ac939c3683b (diff)
Unneeded, ok itojun@
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/net_osdep.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/sys/net/net_osdep.c b/sys/net/net_osdep.c
deleted file mode 100644
index 49d44523190..00000000000
--- a/sys/net/net_osdep.c
+++ /dev/null
@@ -1,57 +0,0 @@
-/* $OpenBSD: net_osdep.c,v 1.3 2001/06/08 04:06:33 angelos Exp $ */
-/* $KAME: net_osdep.c,v 1.8 2000/12/03 00:39:27 itojun Exp $ */
-
-/*
- * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the project nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
-
-#include <sys/param.h>
-#include <sys/mbuf.h>
-#include <sys/socket.h>
-
-#include <net/if.h>
-#include <net/if_types.h>
-#include <net/netisr.h>
-#include <net/route.h>
-#include <net/bpf.h>
-
-#if !(defined(__NetBSD__) || defined(__OpenBSD__))
-const char *
-if_name(ifp)
- struct ifnet *ifp;
-{
- static char nam[IFNAMSIZ + 10]; /*enough?*/
-
-#ifdef __bsdi__
- sprintf(nam, "%s%d", ifp->if_name, ifp->if_unit);
-#else
- snprintf(nam, sizeof(nam), "%s%d", ifp->if_name, ifp->if_unit);
-#endif
- return nam;
-}
-#endif