[BACK]Return to socketvar.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / sys

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/sys/socketvar.h between version 1.74 and 1.75

version 1.74, 2004/04/22 01:01:42 version 1.75, 2004/05/22 22:52:16
Line 122  struct socket {
Line 122  struct socket {
         caddr_t         so_upcallarg;   /* Arg for above */          caddr_t         so_upcallarg;   /* Arg for above */
         int             (*so_send) (struct socket *, struct mbuf *,          int             (*so_send) (struct socket *, struct mbuf *,
                                         struct uio *, struct mbuf *,                                          struct uio *, struct mbuf *,
                                         struct mbuf *, int);                                          struct mbuf *, int, struct proc *);
         int             (*so_receive) (struct socket *,          int             (*so_receive) (struct socket *,
                                         struct mbuf **,                                          struct mbuf **,
                                         struct uio *, struct mbuf **,                                          struct uio *, struct mbuf **,
Line 303  int sobind(struct socket *, struct mbuf 
Line 303  int sobind(struct socket *, struct mbuf 
 void    socantrcvmore(struct socket *);  void    socantrcvmore(struct socket *);
 void    socantsendmore(struct socket *);  void    socantsendmore(struct socket *);
 int     soclose(struct socket *);  int     soclose(struct socket *);
 int     soconnect(struct socket *, struct mbuf *);  int     soconnect(struct socket *, struct mbuf *, struct proc *);
 int     soconnect2(struct socket *, struct socket *);  int     soconnect2(struct socket *, struct socket *);
 int     socreate(int, struct socket **, int, int);  int     socreate(int, struct socket **, int, int, struct proc *);
 int     sodisconnect(struct socket *);  int     sodisconnect(struct socket *);
 void    sofree(struct socket *);  void    sofree(struct socket *);
 int     sogetopt(struct socket *, int, int, struct mbuf **);  int     sogetopt(struct socket *, int, int, struct mbuf **);
Line 324  int soreceive(struct socket *, struct mb
Line 324  int soreceive(struct socket *, struct mb
 int     soreserve(struct socket *, u_long, u_long);  int     soreserve(struct socket *, u_long, u_long);
 void    sorflush(struct socket *);  void    sorflush(struct socket *);
 int     sosend(struct socket *, struct mbuf *, struct uio *,  int     sosend(struct socket *, struct mbuf *, struct uio *,
             struct mbuf *, struct mbuf *, int);              struct mbuf *, struct mbuf *, int, struct proc *);
 int     sosetopt(struct socket *, int, int, struct mbuf *);  int     sosetopt(struct socket *, int, int, struct mbuf *);
 int     soshutdown(struct socket *, int);  int     soshutdown(struct socket *, int);
 void    sowakeup(struct socket *, struct sockbuf *, int);  void    sowakeup(struct socket *, struct sockbuf *, int);

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75

CVSweb <webmaster@jp.NetBSD.org>