xref: /original-bsd/sys/netiso/tp_clnp.h (revision 3705696b)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)tp_clnp.h	8.1 (Berkeley) 06/10/93
8  */
9 
10 /***********************************************************
11 		Copyright IBM Corporation 1987
12 
13                       All Rights Reserved
14 
15 Permission to use, copy, modify, and distribute this software and its
16 documentation for any purpose and without fee is hereby granted,
17 provided that the above copyright notice appear in all copies and that
18 both that copyright notice and this permission notice appear in
19 supporting documentation, and that the name of IBM not be
20 used in advertising or publicity pertaining to distribution of the
21 software without specific, written prior permission.
22 
23 IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
24 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
25 IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
26 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
27 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
28 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
29 SOFTWARE.
30 
31 ******************************************************************/
32 
33 /*
34  * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
35  */
36 /*
37  * ARGO TP
38  *
39  * $Header: tp_clnp.h,v 5.1 88/10/12 12:16:36 root Exp $
40  * $Source: /usr/argo/sys/netiso/RCS/tp_clnp.h,v $
41  *
42  * AF_ISO net-dependent structures and include files
43  *
44  */
45 
46 
47 #ifndef __TP_CLNP__
48 #define __TP_CLNP__
49 
50 #ifndef SOCK_STREAM
51 #include <sys/socket.h>
52 #endif /* SOCK_STREAM */
53 
54 #ifndef RTFREE
55 #include <net/route.h>
56 #endif
57 #include <netiso/iso.h>
58 #include <netiso/clnp.h>
59 #include <netiso/iso_pcb.h>
60 #ifndef IF_DEQUEUE
61 #include <net/if.h>
62 #endif
63 #include <netiso/iso_var.h>
64 
65 struct isopcb tp_isopcb;
66 	/* queue of active inpcbs for tp ; for tp with dod ip */
67 
68 #endif /* __TP_CLNP__ */
69