summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/net/raw_cb.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-25 05:29:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-25 05:29:54 +0000
commite791c230296b1446c8f01cd13ed8a53c3e786fe1 (patch)
tree91fb0c9a66c2591697f015bfb4f76fb4f1146ec1 /cpukit/libnetworking/net/raw_cb.h
parent2007-03-24 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e791c230296b1446c8f01cd13ed8a53c3e786fe1.tar.bz2
Partial update from FreeBSD.
Diffstat (limited to 'cpukit/libnetworking/net/raw_cb.h')
-rw-r--r--cpukit/libnetworking/net/raw_cb.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/cpukit/libnetworking/net/raw_cb.h b/cpukit/libnetworking/net/raw_cb.h
index ee8f14e822..e9027329bf 100644
--- a/cpukit/libnetworking/net/raw_cb.h
+++ b/cpukit/libnetworking/net/raw_cb.h
@@ -10,10 +10,6 @@
* 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. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
@@ -31,6 +27,10 @@
* SUCH DAMAGE.
*
* @(#)raw_cb.h 8.1 (Berkeley) 6/10/93
+ * $FreeBSD: src/sys/net/raw_cb.h,v 1.19 2005/01/07 01:45:35 imp Exp $
+ */
+
+/*
* $Id$
*/
@@ -61,15 +61,15 @@ struct rawcb {
#ifdef _KERNEL
extern struct rawcb rawcb; /* head of list */
-int raw_attach __P((struct socket *, int));
-void raw_ctlinput __P((int, struct sockaddr *, void *));
-void raw_detach __P((struct rawcb *));
-void raw_disconnect __P((struct rawcb *));
-void raw_init __P((void));
-void raw_input __P((struct mbuf *,
- struct sockproto *, struct sockaddr *, struct sockaddr *));
-int raw_usrreq __P((struct socket *,
- int, struct mbuf *, struct mbuf *, struct mbuf *));
+int raw_attach(struct socket *, int);
+void raw_ctlinput(int, struct sockaddr *, void *);
+void raw_detach(struct rawcb *);
+void raw_disconnect(struct rawcb *);
+void raw_init(void);
+void raw_input(struct mbuf *,
+ struct sockproto *, struct sockaddr *, struct sockaddr *);
+int raw_usrreq(struct socket *,
+ int, struct mbuf *, struct mbuf *, struct mbuf *);
#endif
#endif