Revert "Revert "and added files""
[bcm963xx.git] / userapps / opensource / net-snmp / include / net-snmp / session_api.h
1 #ifndef NET_SNMP_SESSION_API_H
2 #define NET_SNMP_SESSION_API_H
3
4     /**
5      *  Library API routines concerned with specifying and using SNMP "sessions"
6      *    including sending and receiving requests.
7      */
8
9 #include <net-snmp/types.h>
10
11     /*
12      *  For the initial release, this will just refer to the
13      *  relevant UCD header files.
14      *    In due course, the routines relevant to this area of the
15      *  API will be identified, and listed here directly.
16      *
17      *  But for the time being, this header file is a placeholder,
18      *  to allow application writers to adopt the new header file names.
19      */
20
21 #include <net-snmp/library/snmp_api.h>
22 #include <net-snmp/library/snmp_client.h>
23 #include <net-snmp/library/asn1.h>
24 #include <net-snmp/library/callback.h>
25
26 #include <net-snmp/library/snmp_transport.h>
27 #include <net-snmp/library/snmpCallbackDomain.h>
28 #ifdef SNMP_TRANSPORT_UNIX_DOMAIN
29 #include <net-snmp/library/snmpUnixDomain.h>
30 #endif
31 #ifdef SNMP_TRANSPORT_UDP_DOMAIN
32 #include <net-snmp/library/snmpUDPDomain.h>
33 #endif
34 #ifdef SNMP_TRANSPORT_TCP_DOMAIN
35 #include <net-snmp/library/snmpTCPDomain.h>
36 #endif
37 #ifdef SNMP_TRANSPORT_UDPIPV6_DOMAIN
38 #include <net-snmp/library/snmpUDPIPv6Domain.h>
39 #endif
40 #ifdef SNMP_TRANSPORT_TCPIPV6_DOMAIN
41 #include <net-snmp/library/snmpTCPIPv6Domain.h>
42 #endif
43 #ifdef SNMP_TRANSPORT_IPX_DOMAIN
44 #include <net-snmp/library/snmpIPXDomain.h>
45 #endif
46 #ifdef SNMP_TRANSPORT_AAL5PVC_DOMAIN
47 #include <net-snmp/library/snmpAAL5PVCDomain.h>
48 #endif
49
50 #include <net-snmp/library/ucd_compat.h>
51
52 #endif                          /* NET_SNMP_SESSION_API_H */