iwm: Fix S:N reporting in ifconfig(8)
[dragonfly.git] / sys / sys / socketvar.h
CommitLineData
984263bc
MD
1/*-
2 * Copyright (c) 1982, 1986, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
2c64e990 13 * 3. Neither the name of the University nor the names of its contributors
984263bc
MD
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)socketvar.h 8.3 (Berkeley) 2/19/95
f1f552f6 30 * $FreeBSD: src/sys/sys/socketvar.h,v 1.46.2.10 2003/08/24 08:24:39 hsu Exp $
4402d8a2 31 * $DragonFly: src/sys/sys/socketvar.h,v 1.35 2008/08/28 23:15:45 dillon Exp $
984263bc
MD
32 */
33
34#ifndef _SYS_SOCKETVAR_H_
35#define _SYS_SOCKETVAR_H_
36
03d6a592
MD
37#ifndef _SYS_TYPES_H_
38#include <sys/types.h>
39#endif
40#ifndef _SYS_QUEUE_H_
984263bc 41#include <sys/queue.h> /* for TAILQ macros */
03d6a592 42#endif
5b22f1a7
SG
43#ifndef _SYS_EVENT_H_
44#include <sys/event.h> /* for struct kqinfo */
03d6a592 45#endif
6cef7136
MD
46#ifndef _SYS_THREAD_H_
47#include <sys/thread.h> /* for struct lwkt_token */
48#endif
6d49aa6f
MD
49#ifndef _SYS_SOCKBUF_H_
50#include <sys/sockbuf.h>
51#endif
984263bc 52
03d6a592 53#if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
6d49aa6f 54
acd31a69
SZ
55#ifndef _NET_NETMSG_H_
56#include <net/netmsg.h>
57#endif
58
96c6eb29
SZ
59#ifndef _SYS_SPINLOCK_H_
60#include <sys/spinlock.h>
61#endif
62
6d49aa6f
MD
63struct accept_filter;
64
984263bc 65/*
6d49aa6f
MD
66 * Signaling socket buffers contain additional elements for locking
67 * and signaling conditions. These are used primarily by sockets.
14343ad3
MD
68 *
69 * WARNING: See partial clearing of fields in kern/uipc_socket.c
70 * sorflush() and sowflush().
984263bc 71 */
6d49aa6f
MD
72struct signalsockbuf {
73 struct sockbuf sb;
5b22f1a7 74 struct kqinfo ssb_kq; /* process selecting read/write */
20faa324 75 struct notifymsglist ssb_mlist; /* list of pending predicate messages */
14343ad3 76 uint32_t ssb_flags; /* flags, see below (use atomic ops) */
45546849 77 u_int ssb_timeo; /* timeout for read/write */
6d49aa6f
MD
78 long ssb_lowat; /* low water mark */
79 u_long ssb_hiwat; /* high water mark / max actual char count */
80 u_long ssb_mbmax; /* max chars of mbufs to use */
6cef7136 81 struct lwkt_token ssb_token; /* frontend/backend serializer */
6d49aa6f 82};
984263bc 83
6d49aa6f
MD
84#define ssb_cc sb.sb_cc /* commonly used fields */
85#define ssb_mb sb.sb_mb /* commonly used fields */
86#define ssb_mbcnt sb.sb_mbcnt /* commonly used fields */
f786a6ac
SZ
87#define ssb_cc_prealloc sb.sb_cc_prealloc
88#define ssb_mbcnt_prealloc sb.sb_mbcnt_prealloc
6d49aa6f 89
14343ad3
MD
90#define SSB_LOCK 0x0001 /* lock on data queue */
91#define SSB_WANT 0x0002 /* someone is waiting to lock */
92#define SSB_WAIT 0x0004 /* someone is waiting for data/space */
93#define SSB_ASYNC 0x0010 /* ASYNC I/O, need signals */
94#define SSB_UPCALL 0x0020 /* someone wants an upcall */
95#define SSB_NOINTR 0x0040 /* operations not interruptible */
91bcbcd6 96/*#define SSB_AIO 0x0080*/ /* AIO operations queued */
14343ad3
MD
97#define SSB_KNOTE 0x0100 /* kernel note attached */
98#define SSB_MEVENT 0x0200 /* need message event notification */
99#define SSB_STOP 0x0400 /* backpressure indicator */
100#define SSB_AUTOSIZE 0x0800 /* automatically size socket buffer */
dbcbe5d3 101#define SSB_AUTOLOWAT 0x1000 /* automatically scale lowat */
14343ad3 102#define SSB_WAKEUP 0x2000 /* wakeup event race */
a5e93826
MD
103#define SSB_PREALLOC 0x4000 /* prealloc supported */
104#define SSB_STOPSUPP 0x8000 /* SSB_STOP supported */
14343ad3
MD
105
106#define SSB_CLEAR_MASK (SSB_ASYNC | SSB_UPCALL | SSB_STOP | \
107 SSB_AUTOSIZE | SSB_AUTOLOWAT)
108
109#define SSB_NOTIFY_MASK (SSB_WAIT | SSB_ASYNC | SSB_UPCALL | \
91bcbcd6 110 SSB_KNOTE | SSB_MEVENT)
984263bc 111
6d49aa6f
MD
112/*
113 * Per-socket kernel structure. Contains universal send and receive queues,
114 * protocol control handle, and error information.
115 */
984263bc
MD
116struct socket {
117 short so_type; /* generic type, see socket.h */
118 short so_options; /* from socket call, see socket.h */
119 short so_linger; /* time to linger while closing */
120 short so_state; /* internal state flags SS_*, below */
ef87f48d 121 void *so_pcb; /* protocol control block */
984263bc 122 struct protosw *so_proto; /* protocol handle */
984263bc 123 struct socket *so_head; /* back pointer to accept socket */
48e7b118 124 lwkt_port_t so_port; /* message port */
6d49aa6f
MD
125
126 /*
127 * These fields are used to manage sockets capable of accepting
128 * new connections.
129 */
130 TAILQ_HEAD(, socket) so_incomp; /* in-progress, incomplete */
131 TAILQ_HEAD(, socket) so_comp; /* completed but not yet accepted */
984263bc 132 TAILQ_ENTRY(socket) so_list; /* list of unaccepted connections */
6d49aa6f
MD
133 short so_qlen; /* so_comp count */
134 short so_incqlen; /* so_incomp count */
984263bc 135 short so_qlimit; /* max number queued connections */
6d49aa6f
MD
136
137 /*
138 * Misc socket support
139 */
984263bc
MD
140 short so_timeo; /* connection timeout */
141 u_short so_error; /* error affecting connection */
7eaeff3d 142 u_short so_rerror; /* error affecting receiving */
984263bc
MD
143 struct sigio *so_sigio; /* information for async I/O or
144 out of band data (SIGURG) */
145 u_long so_oobmark; /* chars to oob mark */
146 TAILQ_HEAD(, aiocblist) so_aiojobq; /* AIO ops waiting on socket */
6d49aa6f
MD
147 struct signalsockbuf so_rcv;
148 struct signalsockbuf so_snd;
984263bc 149
b153f746 150 void (*so_upcall) (struct socket *, void *, int);
984263bc
MD
151 void *so_upcallarg;
152 struct ucred *so_cred; /* user credentials */
153 /* NB: generation count must not be first; easiest to make it last. */
984263bc 154 void *so_emuldata; /* private data for emulators */
6cef7136 155 int so_refs; /* shutdown refs */
c6e47da6 156 int so_reserved01;
b272101a 157 struct so_accf {
984263bc
MD
158 struct accept_filter *so_accept_filter;
159 void *so_accept_filter_arg; /* saved filter args */
160 char *so_accept_filter_str; /* saved user args */
161 } *so_accf;
acd31a69
SZ
162
163 struct netmsg_base so_clomsg;
88da6203 164 struct sockaddr *so_faddr;
96c6eb29
SZ
165
166 struct spinlock so_rcvd_spin;
167 struct netmsg_pru_rcvd so_rcvd_msg;
9ca1e337
SZ
168
169 lwkt_port_t so_orig_port;
c6e47da6
MD
170
171 long so_inum;
5c694678
AL
172
173 uint32_t so_user_cookie; /* user-specified metadata */
984263bc
MD
174};
175
03d6a592
MD
176#endif
177
984263bc
MD
178/*
179 * Socket state bits.
6cef7136
MD
180 *
181 * NOTE: The following states are interlocked with so_refs:
182 *
183 * SS_NOFDREF so_refs while not set
184 * (so_pcb) so_refs while set
984263bc
MD
185 */
186#define SS_NOFDREF 0x0001 /* no file table ref any more */
187#define SS_ISCONNECTED 0x0002 /* socket connected to a peer */
188#define SS_ISCONNECTING 0x0004 /* in process of connecting to peer */
189#define SS_ISDISCONNECTING 0x0008 /* in process of disconnecting */
190#define SS_CANTSENDMORE 0x0010 /* can't send more data to peer */
191#define SS_CANTRCVMORE 0x0020 /* can't receive more data from peer */
192#define SS_RCVATMARK 0x0040 /* at mark on input */
193
419e6645 194#define SS_ISCLOSING 0x0080 /* in process of closing */
e28d8186 195#define SS_ASSERTINPROG 0x0100 /* sonewconn race debugging */
984263bc
MD
196#define SS_ASYNC 0x0200 /* async i/o notify */
197#define SS_ISCONFIRMING 0x0400 /* deciding to accept connection req */
198
199#define SS_INCOMP 0x0800 /* unaccepted, incomplete connection */
200#define SS_COMP 0x1000 /* unaccepted, complete connection */
201#define SS_ISDISCONNECTED 0x2000 /* socket disconnected from peer */
2d5847e2 202#define SS_ACCEPTMECH 0x4000 /* allow bind override vs accepted */
984263bc
MD
203
204/*
205 * Externalized form of struct socket used by the sysctl(3) interface.
206 */
207struct xsocket {
208 size_t xso_len; /* length of this structure */
209 struct socket *xso_so; /* makes a convenient handle sometimes */
210 short so_type;
211 short so_options;
212 short so_linger;
213 short so_state;
ef87f48d 214 void *so_pcb; /* another convenient handle */
984263bc
MD
215 int xso_protocol;
216 int xso_family;
217 short so_qlen;
218 short so_incqlen;
219 short so_qlimit;
220 short so_timeo;
221 u_short so_error;
222 pid_t so_pgid;
223 u_long so_oobmark;
224 struct xsockbuf {
225 u_long sb_cc;
226 u_long sb_hiwat;
227 u_long sb_mbcnt;
228 u_long sb_mbmax;
229 long sb_lowat;
45546849 230 u_int sb_timeo;
984263bc 231 short sb_flags;
984263bc
MD
232 } so_rcv, so_snd;
233 uid_t so_uid; /* XXX */
234};
235
236/*
237 * Macros for sockets and socket buffering.
238 */
239
984263bc
MD
240#define sosendallatonce(so) \
241 ((so)->so_proto->pr_flags & PR_ATOMIC)
242
243/* can we read something from so? */
244#define soreadable(so) \
6d49aa6f 245 ((so)->so_rcv.ssb_cc >= (so)->so_rcv.ssb_lowat || \
984263bc 246 ((so)->so_state & SS_CANTRCVMORE) || \
6fa9a62e 247 !TAILQ_EMPTY(&(so)->so_comp) || (so)->so_error || (so)->so_rerror)
984263bc
MD
248
249/* can we write something to so? */
250#define sowriteable(so) \
6d49aa6f 251 ((ssb_space(&(so)->so_snd) >= (so)->so_snd.ssb_lowat && \
984263bc
MD
252 (((so)->so_state&SS_ISCONNECTED) || \
253 ((so)->so_proto->pr_flags&PR_CONNREQUIRED)==0)) || \
254 ((so)->so_state & SS_CANTSENDMORE) || \
255 (so)->so_error)
256
6d49aa6f 257/* do we have to send all at once on a socket? */
984263bc 258
0efd86dd
MD
259#ifdef _KERNEL
260
6d49aa6f
MD
261/*
262 * How much space is there in a socket buffer (so->so_snd or so->so_rcv)?
263 * This is problematical if the fields are unsigned, as the space might
264 * still be negative (cc > hiwat or mbcnt > mbmax). Should detect
3a6117bb
MD
265 * overflow and return 0.
266 *
267 * SSB_STOP ignores cc/hiwat and returns 0. This is used by unix domain
268 * stream sockets to signal backpressure.
6d49aa6f 269 */
3a6117bb
MD
270static __inline
271long
272ssb_space(struct signalsockbuf *ssb)
273{
274 long bleft;
275 long mleft;
276
277 if (ssb->ssb_flags & SSB_STOP)
278 return(0);
279 bleft = ssb->ssb_hiwat - ssb->ssb_cc;
280 mleft = ssb->ssb_mbmax - ssb->ssb_mbcnt;
281 return((bleft < mleft) ? bleft : mleft);
282}
6d49aa6f 283
f786a6ac
SZ
284static __inline long
285ssb_space_prealloc(struct signalsockbuf *ssb)
286{
287 long bleft, bleft_prealloc;
288 long mleft, mleft_prealloc;
289
290 if (ssb->ssb_flags & SSB_STOP)
291 return(0);
292
293 bleft = ssb->ssb_hiwat - ssb->ssb_cc;
294 bleft_prealloc = ssb->ssb_hiwat - ssb->ssb_cc_prealloc;
295 if (bleft_prealloc < bleft)
296 bleft = bleft_prealloc;
297
298 mleft = ssb->ssb_mbmax - ssb->ssb_mbcnt;
299 mleft_prealloc = ssb->ssb_mbmax - ssb->ssb_mbcnt_prealloc;
300 if (mleft_prealloc < mleft)
301 mleft = mleft_prealloc;
302
303 return((bleft < mleft) ? bleft : mleft);
304}
305
306/*
307 * NOTE: Only works w/ later ssb_appendstream() on m
308 */
309static __inline void
310ssb_preallocstream(struct signalsockbuf *ssb, struct mbuf *m)
311{
312 if (m->m_len == 0)
313 return;
314 sbprealloc(&ssb->sb, m);
315}
316
0efd86dd
MD
317#endif
318
6d49aa6f
MD
319#define ssb_append(ssb, m) \
320 sbappend(&(ssb)->sb, m)
321
322#define ssb_appendstream(ssb, m) \
323 sbappendstream(&(ssb)->sb, m)
324
325#define ssb_appendrecord(ssb, m) \
326 sbappendrecord(&(ssb)->sb, m)
327
328#define ssb_appendaddr(ssb, src, m, control) \
ee38db90 329 ((ssb_space(ssb) <= 0) ? 0 : sbappendaddr(&(ssb)->sb, src, m, control))
6d49aa6f
MD
330
331#define ssb_appendcontrol(ssb, m, control) \
ee38db90 332 ((ssb_space(ssb) <= 0) ? 0 : sbappendcontrol(&(ssb)->sb, m, control))
6d49aa6f 333
6acf62db 334#define ssb_insert_knote(ssb, kn) do { \
14343ad3
MD
335 knote_insert(&(ssb)->ssb_kq.ki_note, kn); \
336 atomic_set_int(&(ssb)->ssb_flags, SSB_KNOTE); \
6acf62db 337} while(0)
6d49aa6f 338
6acf62db 339#define ssb_remove_knote(ssb, kn) do { \
14343ad3 340 knote_remove(&(ssb)->ssb_kq.ki_note, kn); \
5b22f1a7 341 if (SLIST_EMPTY(&(ssb)->ssb_kq.ki_note)) \
14343ad3 342 atomic_clear_int(&(ssb)->ssb_flags, SSB_KNOTE); \
6acf62db 343} while(0)
6d49aa6f 344
b210f45e
MD
345#define sorwakeup(so) sowakeup((so), &(so)->so_rcv)
346#define sowwakeup(so) sowakeup((so), &(so)->so_snd)
984263bc
MD
347
348#ifdef _KERNEL
349
350/*
351 * Argument structure for sosetopt et seq. This is in the KERNEL
352 * section because it will never be visible to user code.
353 */
354enum sopt_dir { SOPT_GET, SOPT_SET };
355struct sockopt {
356 enum sopt_dir sopt_dir; /* is this a get or a set? */
357 int sopt_level; /* second arg of [gs]etsockopt */
358 int sopt_name; /* third arg of [gs]etsockopt */
359 void *sopt_val; /* fourth arg of [gs]etsockopt */
360 size_t sopt_valsize; /* (almost) fifth arg of [gs]etsockopt */
dadab5e9 361 struct thread *sopt_td; /* calling thread or null if kernel */
984263bc
MD
362};
363
984263bc
MD
364struct accept_filter {
365 char accf_name[16];
366 void (*accf_callback)
b153f746 367 (struct socket *so, void *arg, int waitflag);
984263bc 368 void * (*accf_create)
b153f746 369 (struct socket *so, char *arg);
984263bc 370 void (*accf_destroy)
b153f746 371 (struct socket *so);
984263bc
MD
372 SLIST_ENTRY(accept_filter) accf_next; /* next on the list */
373};
374
375#ifdef MALLOC_DECLARE
376MALLOC_DECLARE(M_PCB);
377MALLOC_DECLARE(M_SONAME);
378MALLOC_DECLARE(M_ACCF);
379#endif
380
381extern int maxsockets;
e9855d6b
MD
382extern u_long sb_max; /* nominal limit */
383extern u_long sb_max_adj; /* actual limit used by sbreserve() */
984263bc
MD
384
385struct file;
386struct filedesc;
387struct mbuf;
e4700d00 388struct rlimit;
984263bc
MD
389struct sockaddr;
390struct stat;
391struct ucred;
392struct uio;
393struct knote;
87baaf0c 394struct sysmsg;
984263bc
MD
395
396/*
397 * File operations on sockets.
398 */
b153f746 399int soo_read (struct file *fp, struct uio *uio, struct ucred *cred,
87baaf0c 400 int flags);
b153f746 401int soo_write (struct file *fp, struct uio *uio, struct ucred *cred,
87baaf0c 402 int flags);
87de5057
MD
403int soo_close (struct file *fp);
404int soo_shutdown (struct file *fp, int how);
b153f746 405int soo_ioctl (struct file *fp, u_long cmd, caddr_t data,
87baaf0c 406 struct ucred *cred, struct sysmsg *msg);
87de5057 407int soo_stat (struct file *fp, struct stat *ub, struct ucred *cred);
b153f746 408int sokqfilter (struct file *fp, struct knote *kn);
984263bc
MD
409
410/*
411 * From uipc_socket and friends
412 */
590b8cd4 413struct sockaddr *dup_sockaddr (const struct sockaddr *sa);
b153f746 414int getsockaddr (struct sockaddr **namp, caddr_t uaddr, size_t len);
6d49aa6f
MD
415
416void ssb_release (struct signalsockbuf *ssb, struct socket *so);
417int ssb_reserve (struct signalsockbuf *ssb, u_long cc, struct socket *so,
e4700d00 418 struct rlimit *rl);
6d49aa6f
MD
419void ssbtoxsockbuf (struct signalsockbuf *sb, struct xsockbuf *xsb);
420int ssb_wait (struct signalsockbuf *sb);
421int _ssb_lock (struct signalsockbuf *sb);
422
3735a885 423void soabort_async (struct socket *so, boolean_t clr_head);
94aba184 424void soabort_direct (struct socket *so);
b153f746 425int soaccept (struct socket *so, struct sockaddr **nam);
88da6203 426void soaccept_generic (struct socket *so);
96c6eb29 427struct socket *soalloc (int waitok, struct protosw *);
b153f746
RG
428int sobind (struct socket *so, struct sockaddr *nam, struct thread *td);
429void socantrcvmore (struct socket *so);
430void socantsendmore (struct socket *so);
7eaeff3d 431void soroverflow(struct socket *so);
8b5c39bb 432int socket_wait (struct socket *so, struct timespec *ts, int *res);
9ba76b73 433int soclose (struct socket *so, int fflags);
e368a6e9
SZ
434int soconnect (struct socket *so, struct sockaddr *nam, struct thread *td,
435 boolean_t sync);
22db3608 436int soconnect2 (struct socket *so1, struct socket *so2, struct ucred *cred);
b153f746
RG
437int socreate (int dom, struct socket **aso, int type, int proto,
438 struct thread *td);
b153f746 439int sodisconnect (struct socket *so);
be4519a2 440void sodiscard (struct socket *so);
b153f746
RG
441void sofree (struct socket *so);
442int sogetopt (struct socket *so, struct sockopt *sopt);
443void sohasoutofband (struct socket *so);
444void soisconnected (struct socket *so);
445void soisconnecting (struct socket *so);
446void soisdisconnected (struct socket *so);
447void soisdisconnecting (struct socket *so);
0f2e13ef
SG
448void soisreconnected (struct socket *so);
449void soisreconnecting (struct socket *so);
48e7b118 450void sosetport (struct socket *so, struct lwkt_port *port);
b153f746
RG
451int solisten (struct socket *so, int backlog, struct thread *td);
452struct socket *sonewconn (struct socket *head, int connstatus);
88da6203 453struct socket *sonewconn_faddr (struct socket *head, int connstatus,
37e299d5 454 const struct sockaddr *faddr, boolean_t keep_ref);
02ad2f0b 455void soinherit(struct socket *so, struct socket *so_inh);
b153f746
RG
456int sooptcopyin (struct sockopt *sopt, void *buf, size_t len,
457 size_t minlen);
e71a125f
AE
458int soopt_to_kbuf (struct sockopt *sopt, void *buf, size_t len,
459 size_t minlen);
f1f552f6 460int sooptcopyout (struct sockopt *sopt, const void *buf, size_t len);
e71a125f 461void soopt_from_kbuf (struct sockopt *sopt, const void *buf, size_t len);
984263bc
MD
462
463/* XXX; prepare mbuf for (__FreeBSD__ < 3) routines. */
b153f746
RG
464int soopt_getm (struct sockopt *sopt, struct mbuf **mp);
465int soopt_mcopyin (struct sockopt *sopt, struct mbuf *m);
e71a125f 466void soopt_to_mbuf (struct sockopt *sopt, struct mbuf *m);
b153f746 467int soopt_mcopyout (struct sockopt *sopt, struct mbuf *m);
e71a125f 468int soopt_from_mbuf (struct sockopt *sopt, struct mbuf *m);
984263bc 469
b153f746 470int soreceive (struct socket *so, struct sockaddr **paddr,
6d49aa6f 471 struct uio *uio, struct sockbuf *sio,
b153f746 472 struct mbuf **controlp, int *flagsp);
9510c423
SZ
473int sorecvtcp (struct socket *so, struct sockaddr **paddr,
474 struct uio *uio, struct sockbuf *sio,
475 struct mbuf **controlp, int *flagsp);
e4700d00
JH
476int soreserve (struct socket *so, u_long sndcc, u_long rcvcc,
477 struct rlimit *rl);
b153f746
RG
478void sorflush (struct socket *so);
479int sosend (struct socket *so, struct sockaddr *addr, struct uio *uio,
984263bc 480 struct mbuf *top, struct mbuf *control, int flags,
b153f746 481 struct thread *td);
6ea1e9b9
JH
482int sosendudp (struct socket *so, struct sockaddr *addr, struct uio *uio,
483 struct mbuf *top, struct mbuf *control, int flags,
484 struct thread *td);
5bc42dd1
SZ
485int sosendtcp (struct socket *so, struct sockaddr *addr, struct uio *uio,
486 struct mbuf *top, struct mbuf *control, int flags,
487 struct thread *td);
b153f746
RG
488int sosetopt (struct socket *so, struct sockopt *sopt);
489int soshutdown (struct socket *so, int how);
490void sotoxsocket (struct socket *so, struct xsocket *xso);
6d49aa6f 491void sowakeup (struct socket *so, struct signalsockbuf *sb);
984263bc
MD
492
493/* accept filter functions */
b153f746
RG
494int accept_filt_add (struct accept_filter *filt);
495int accept_filt_del (char *name);
496struct accept_filter * accept_filt_get (char *name);
984263bc 497#ifdef ACCEPT_FILTER_MOD
b153f746 498int accept_filt_generic_mod_event (module_t mod, int event, void *data);
984263bc
MD
499SYSCTL_DECL(_net_inet_accf);
500#endif /* ACCEPT_FILTER_MOD */
501
502#endif /* _KERNEL */
503
504#endif /* !_SYS_SOCKETVAR_H_ */