Deleted Added
full compact
ipx_pcb.h (11819) ipx_pcb.h (11947)
1/*
2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 64 unchanged lines hidden (view full) ---

73/*
74 * Nominal space allocated to a IPX socket.
75 */
76#define IPXSNDQ 2048
77#define IPXRCVQ 2048
78
79
80#ifdef KERNEL
1/*
2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 64 unchanged lines hidden (view full) ---

73/*
74 * Nominal space allocated to a IPX socket.
75 */
76#define IPXSNDQ 2048
77#define IPXRCVQ 2048
78
79
80#ifdef KERNEL
81
81extern struct ipxpcb ipxpcb; /* head of list */
82extern struct ipxpcb ipxpcb; /* head of list */
82int ipx_pcballoc(), ipx_pcbbind(), ipx_pcbconnect();
83void ipx_pcbdisconnect(), ipx_pcbdetach(), ipx_setsockaddr();
84void ipx_setpeeraddr(), ipx_pcbnotify();
85struct ipxpcb *ipx_pcblookup();
83
84#include <sys/cdefs.h>
85
86__BEGIN_DECLS
87int ipx_pcballoc __P((struct socket *so, struct ipxpcb *head));
88int ipx_pcbbind __P((struct ipxpcb *ipxp, struct mbuf *nam));
89int ipx_pcbconnect __P((struct ipxpcb *ipxp, struct mbuf *nam));
90void ipx_pcbdisconnect __P((struct ipxpcb *ipxp));
91void ipx_pcbdetach __P((struct ipxpcb *ipxp));
92void ipx_setsockaddr __P((struct ipxpcb *ipxp, struct mbuf *nam));
93void ipx_setpeeraddr __P((struct ipxpcb *ipxp, struct mbuf *nam));
94void ipx_pcbnotify __P((struct ipx_addr *dst, int errno, int (*notify)(), long param));
95struct ipxpcb *ipx_pcblookup __P((struct ipx_addr *faddr, int lport, int wildp));
96__END_DECLS
97
86#endif
87
88#endif
98#endif
99
100#endif