/* * @(#) $Id: rsvp_daemon.h,v 4.9 1998/08/18 17:31:24 lindell Exp $ */ /**************************************************************************** RSVPD -- ReSerVation Protocol Daemon USC Information Sciences Institute Marina del Rey, California Original Version: Shai Herzog, Nov. 1993. Current Version: Steven Berson & Bob Braden, May 1996. Copyright (c) 1996 by the University of Southern California All rights reserved. Permission to use, copy, modify, and distribute this software and its documentation in source and binary forms for any purpose and without fee is hereby granted, provided that both the above copyright notice and this permission notice appear in all copies, and that any documentation, advertising materials, and other materials related to such distribution and use acknowledge that the software was developed in part by the University of Southern California, Information Sciences Institute. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. THE UNIVERSITY OF SOUTHERN CALIFORNIA makes no representations about the suitability of this software for any purpose. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Other copyrights might apply to parts of this software and are so noted when applicable. ********************************************************************/ #ifndef __rsvp_daemon_h__ #define __rsvp_daemon_h__ #include #include #include #include #include #include #include #include "config.h" #include "rsvp_types.h" /* it's important for these to come first */ #include #include #include #ifdef STANDARD_C_LIBRARY # include # include /* for offsetof */ #else # include # include #endif #ifndef _KERNEL # include #endif #include #include #include #ifndef NET_IF_H #define NET_IF_H #include #endif #ifndef NETINET_IN_SYSTM_H #define NETINET_IN_SYSTM_H #include #endif #include #ifndef NETINET_IP_H #define NETINET_IP_H #include #endif #ifdef SOLARIS #include #include #include #undef IPOPT_EOL #undef IPOPT_NOP #undef IPOPT_LSRR #undef IPOPT_RR #undef IPOPT_SSRR #include #else /* not SOLARIS */ #include #endif /* SOLARIS */ #include #include #include #include "rsvp_socks.h" #include "rsvp_trans.h" #include "rsvp.h" #ifdef STATS #include "rsvp_stats.h" #endif #include "rsvp_var.h" #include "rsrr.h" #include "rsvp_global.h" #include "rsvp_mac.h" #include "rsvp_specs.h" #include "rsrr_var.h" #include "rsvp_objs.h" #ifdef INCLUDE_SYSTEM_H #include "system.h" #endif #ifndef SYS_ERRLIST_DECLARED extern char *sys_errlist[]; extern int sys_nerr; #endif #include "rsvp_proto.h" #endif /* __rsvp_daemon_h__ */