getkerninfo skipped defaults ``dupedkeyed'' behind the root node;
[unix-history] / usr / src / sys / net / raw_cb.h
CommitLineData
cb1c44c2 1/*
1810611d 2 * Copyright (c) 1980, 1986 Regents of the University of California.
5b519e94 3 * All rights reserved.
cb1c44c2 4 *
5b519e94 5 * Redistribution and use in source and binary forms are permitted
50c7758a
KB
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
5b519e94 16 *
b72a6efb 17 * @(#)raw_cb.h 7.5 (Berkeley) %G%
cb1c44c2 18 */
16287509
BJ
19
20/*
21 * Raw protocol interface control block. Used
22 * to tie a socket to the generic raw interface.
23 */
24struct rawcb {
25 struct rawcb *rcb_next; /* doubly linked list */
26 struct rawcb *rcb_prev;
27 struct socket *rcb_socket; /* back pointer to socket */
b72a6efb
KS
28 struct sockaddr *rcb_faddr; /* destination address */
29 struct sockaddr *rcb_laddr; /* socket's address */
829f867e 30 struct sockproto rcb_proto; /* protocol family, protocol */
16287509
BJ
31};
32
16287509
BJ
33#define sotorawcb(so) ((struct rawcb *)(so)->so_pcb)
34
35/*
36 * Nominal space allocated to a raw socket.
37 */
07ff9218
MK
38#define RAWSNDQ 8192
39#define RAWRCVQ 8192
16287509 40
16287509
BJ
41#ifdef KERNEL
42struct rawcb rawcb; /* head of list */
43#endif