1 #ifndef _SNMPALIASDOMAIN_H
2 #define _SNMPALIASDOMAIN_H
3 
4 #ifdef NETSNMP_TRANSPORT_ALIAS_DOMAIN
5 
6 #ifdef __cplusplus
7 extern          "C" {
8 #endif
9 
10 #include <net-snmp/library/snmp_transport.h>
11 #include <net-snmp/library/asn1.h>
12 
13 /*
14  * Simple aliases for complex transport strings that can be specified
15  * via the snmp.conf file and the 'alias' token.
16  */
17 
18 #define TRANSPORT_DOMAIN_ALIAS_IP		1,3,6,1,2,1,100,1,5
19 NETSNMP_IMPORT oid netsnmp_snmpALIASDomain[];
20 
21 /*
22  * "Constructor" for transport domain object.
23  */
24 
25 void            netsnmp_alias_ctor(void);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 #endif                          /*NETSNMP_TRANSPORT_ALIAS_DOMAIN */
31 
32 #endif/*_SNMPALIASDOMAIN_H*/
33