fix #endif something to #endif /* something */
[unix-history] / usr / src / sys / netiso / iso_proto.c
CommitLineData
7bcd1bb8
KB
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
94990e23 7 * @(#)iso_proto.c 7.12 (Berkeley) %G%
7bcd1bb8
KB
8 */
9
5d0aaf88
KS
10/***********************************************************
11 Copyright IBM Corporation 1987
12
13 All Rights Reserved
14
15Permission to use, copy, modify, and distribute this software and its
16documentation for any purpose and without fee is hereby granted,
17provided that the above copyright notice appear in all copies and that
18both that copyright notice and this permission notice appear in
19supporting documentation, and that the name of IBM not be
20used in advertising or publicity pertaining to distribution of the
21software without specific, written prior permission.
22
23IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
24ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
25IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
26ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
27WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
28ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
29SOFTWARE.
30
31******************************************************************/
32
33/*
34 * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
35 */
36/* $Header: iso_proto.c,v 4.4 88/09/08 08:38:42 hagens Exp $
37 * $Source: /usr/argo/sys/netiso/RCS/iso_proto.c,v $
38 *
39 * iso_proto.c : protocol switch tables in the ISO domain
40 *
41 * ISO protocol family includes TP, CLTP, CLNP, 8208
42 * TP and CLNP are implemented here.
43 */
44
5d0aaf88 45#ifdef ISO
5548a02f
KB
46#include <sys/param.h>
47#include <sys/socket.h>
48#include <sys/protosw.h>
49#include <sys/domain.h>
50#include <sys/mbuf.h>
a50e2bc0 51
5548a02f
KB
52#include <net/radix.h>
53
54#include <netiso/iso.h>
5d0aaf88
KS
55
56int clnp_output(), clnp_init(),clnp_slowtimo(),clnp_drain();
57int rclnp_input(), rclnp_output(), rclnp_ctloutput(), raw_usrreq();
58int clnp_usrreq();
5d0aaf88 59
94990e23 60int tp_ctloutput(), tpclnp_ctlinput(), tpclnp_input(), tp_usrreq();
13cdf5ec 61int tp_init(), tp_fasttimo(), tp_slowtimo(), tp_drain();
0f6310eb 62int cons_init(), tpcons_input();
5d0aaf88 63
94990e23 64int isis_input();
5d0aaf88 65int esis_input(), esis_ctlinput(), esis_init(), esis_usrreq();
94990e23 66int idrp_input(), idrp_init(), idrp_usrreq();
bace31da 67int cltp_input(), cltp_ctlinput(), cltp_init(), cltp_usrreq(), cltp_output();
94990e23
KS
68
69#ifdef TUBA
70int tuba_usrreq(), tuba_ctloutput(), tuba_init(), tuba_tcpinput();
71int tuba_slowtimo(), tuba_fasttimo();
72#endif
5d0aaf88
KS
73
74struct protosw isosw[] = {
75/*
76 * We need a datagram entry through which net mgmt programs can get
77 * to the iso_control procedure (iso ioctls). Thus, a minimal
78 * SOCK_DGRAM interface is provided here.
79 * THIS ONE MUST BE FIRST: Kludge city : socket() says if(!proto) call
80 * pffindtype, which gets the first entry that matches the type.
81 * sigh.
82 */
bace31da
KS
83{ SOCK_DGRAM, &isodomain, ISOPROTO_CLTP, PR_ATOMIC|PR_ADDR,
84 0, cltp_output, 0, 0,
85 cltp_usrreq,
86 cltp_init, 0, 0, 0
5d0aaf88
KS
87},
88
89/*
90 * A datagram interface for clnp cannot co-exist with TP/CLNP
91 * because CLNP has no way to discriminate incoming TP packets from
92 * packets coming in for any other higher layer protocol.
93 * Old way: set it up so that pffindproto(... dgm, clnp) fails.
94 * New way: let pffindproto work (for x.25, thank you) but create
95 * a clnp_usrreq() that returns error on PRU_ATTACH.
96 */
97{SOCK_DGRAM, &isodomain, ISOPROTO_CLNP, 0,
bace31da
KS
98 0, clnp_output, 0, 0,
99 clnp_usrreq,
5d0aaf88
KS
100 clnp_init, 0, clnp_slowtimo, clnp_drain,
101},
102
103/* raw clnp */
104{ SOCK_RAW, &isodomain, ISOPROTO_RAW, PR_ATOMIC|PR_ADDR,
105 rclnp_input, rclnp_output, 0, rclnp_ctloutput,
bec1b7dc 106 clnp_usrreq,
5d0aaf88
KS
107 0, 0, 0, 0
108},
109
110/* ES-IS protocol */
111{ SOCK_DGRAM, &isodomain, ISOPROTO_ESIS, PR_ATOMIC|PR_ADDR,
0f6310eb 112 esis_input, 0, esis_ctlinput, 0,
5d0aaf88 113 esis_usrreq,
d12b96b5
KS
114 esis_init, 0, 0, 0
115},
116
117/* ISOPROTO_INTRAISIS */
118{ SOCK_DGRAM, &isodomain, ISOPROTO_INTRAISIS, PR_ATOMIC|PR_ADDR,
119 isis_input, 0, 0, 0,
120 esis_usrreq,
121 0, 0, 0, 0
5d0aaf88
KS
122},
123
94990e23
KS
124/* ISOPROTO_IDRP */
125{ SOCK_DGRAM, &isodomain, ISOPROTO_IDRP, PR_ATOMIC|PR_ADDR,
126 idrp_input, 0, 0, 0,
127 idrp_usrreq,
128 idrp_init, 0, 0, 0
129},
130
5d0aaf88 131/* ISOPROTO_TP */
0f6310eb 132{ SOCK_SEQPACKET, &isodomain, ISOPROTO_TP, PR_CONNREQUIRED|PR_WANTRCVD,
94990e23 133 tpclnp_input, 0, tpclnp_ctlinput, tp_ctloutput,
5d0aaf88 134 tp_usrreq,
94990e23
KS
135 tp_init, tp_fasttimo, tp_slowtimo, tp_drain,
136},
137
138#ifdef TUBA
139{ SOCK_STREAM, &isodomain, ISOPROTO_TCP, PR_CONNREQUIRED|PR_WANTRCVD,
140 tuba_tcpinput, 0, 0, tuba_ctloutput,
141 tuba_usrreq,
142 tuba_init, tuba_fasttimo, tuba_fasttimo, 0
5d0aaf88 143},
94990e23 144#endif
5d0aaf88 145
0f6310eb
KS
146#ifdef TPCONS
147/* ISOPROTO_TP */
148{ SOCK_SEQPACKET, &isodomain, ISOPROTO_TP0, PR_CONNREQUIRED|PR_WANTRCVD,
149 tpcons_input, 0, 0, tp_ctloutput,
150 tp_usrreq,
151 cons_init, 0, 0, 0,
152},
153#endif
154
5d0aaf88
KS
155};
156
5d0aaf88
KS
157
158struct domain isodomain = {
159 AF_ISO, /* family */
160 "iso-domain", /* name */
5c48f39f 161 0, /* initialize routine */
5d0aaf88
KS
162 0, /* externalize access rights */
163 0, /* dispose of internalized rights */
164 isosw, /* protosw */
5c48f39f
KS
165 &isosw[sizeof(isosw)/sizeof(isosw[0])], /* NPROTOSW */
166 0, /* next */
167 rn_inithead, /* rtattach */
168 48, /* rtoffset */
169 sizeof(struct sockaddr_iso) /* maxkeylen */
5d0aaf88
KS
170};
171#endif ISO