summaryrefslogtreecommitdiffstats
path: root/sys/sys/socketvar.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/socketvar.h')
-rw-r--r--sys/sys/socketvar.h37
1 files changed, 20 insertions, 17 deletions
diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h
index e2de7ec..5cc175e 100644
--- a/sys/sys/socketvar.h
+++ b/sys/sys/socketvar.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)socketvar.h 8.1 (Berkeley) 6/2/93
- * $Id: socketvar.h,v 1.9 1995/12/14 22:51:13 bde Exp $
+ * $Id: socketvar.h,v 1.10 1996/01/30 23:01:25 mpp Exp $
*/
#ifndef _SYS_SOCKETVAR_H_
@@ -217,13 +217,14 @@ void sbrelease __P((struct sockbuf *));
void sbappend __P((struct sockbuf *, struct mbuf *));
void sbappendrecord __P((struct sockbuf *, struct mbuf *));
int sbappendcontrol __P((struct sockbuf *, struct mbuf *, struct mbuf *));
-int sbappendaddr __P((struct sockbuf *, struct sockaddr *, struct mbuf *, struct mbuf *));
+int sbappendaddr __P((struct sockbuf *, struct sockaddr *,
+ struct mbuf *, struct mbuf *));
void sbdroprecord __P((struct sockbuf *));
void sbcompress __P((struct sockbuf *, struct mbuf *, struct mbuf *));
void sbflush __P((struct sockbuf *));
void sbinsertoob __P((struct sockbuf *, struct mbuf *));
-int sbreserve __P((struct sockbuf *,u_long));
-int soreserve __P((struct socket *,u_long,u_long));
+int sbreserve __P((struct sockbuf *, u_long));
+int soreserve __P((struct socket *, u_long, u_long));
int sb_lock __P((struct sockbuf *));
int sbwait __P((struct sockbuf *));
void sbdrop __P((struct sockbuf *, int));
@@ -237,20 +238,22 @@ void soisconnecting __P((struct socket *));
void soisdisconnecting __P((struct socket *));
void sohasoutofband __P((struct socket *));
int sodisconnect __P((struct socket *));
-int sosend __P((struct socket *,struct mbuf *, struct uio *, struct mbuf *, struct mbuf *, int));
-int socreate __P((int, struct socket **,int,int));
-int getsock __P((struct filedesc *,int,struct file **));
-int sockargs __P((struct mbuf **,caddr_t,int,int));
-int sobind __P((struct socket *,struct mbuf *));
-int solisten __P((struct socket *,int));
-int soaccept __P((struct socket *,struct mbuf *));
-int soconnect __P((struct socket *,struct mbuf *));
-int soconnect2 __P((struct socket *,struct socket *));
+int sosend __P((struct socket *, struct mbuf *, struct uio *,
+ struct mbuf *, struct mbuf *, int));
+int socreate __P((int, struct socket **, int, int, struct proc *));
+int getsock __P((struct filedesc *, int, struct file **));
+int sockargs __P((struct mbuf **, caddr_t, int, int));
+int sobind __P((struct socket *, struct mbuf *));
+int solisten __P((struct socket *, int));
+int soaccept __P((struct socket *, struct mbuf *));
+int soconnect __P((struct socket *, struct mbuf *));
+int soconnect2 __P((struct socket *, struct socket *));
int soclose __P((struct socket *));
-int soshutdown __P((struct socket *,int));
-int soreceive __P((struct socket *,struct mbuf **,struct uio *,struct mbuf **,struct mbuf **,int *));
-int sosetopt __P((struct socket *,int, int, struct mbuf *));
-int sogetopt __P((struct socket *,int, int, struct mbuf **));
+int soshutdown __P((struct socket *, int));
+int soreceive __P((struct socket *, struct mbuf **, struct uio *,
+ struct mbuf **, struct mbuf **, int *));
+int sosetopt __P((struct socket *, int, int, struct mbuf *));
+int sogetopt __P((struct socket *, int, int, struct mbuf **));
#endif
#endif
OpenPOWER on IntegriCloud