65 lines
1.6 KiB
C
65 lines
1.6 KiB
C
/*
|
|
* Template MIB group interface - at.h
|
|
*
|
|
*/
|
|
|
|
#ifndef _MIBGROUP_AT_H
|
|
#define _MIBGROUP_AT_H
|
|
|
|
#if HAVE_NET_ROUTE_H
|
|
#include <net/route.h>
|
|
#endif
|
|
|
|
config_arch_require(solaris2, kernel_sunos5)
|
|
|
|
extern void init_at(void);
|
|
extern FindVarMethod var_atEntry;
|
|
|
|
|
|
#define ATIFINDEX 0
|
|
#define ATPHYSADDRESS 1
|
|
#define ATNETADDRESS 2
|
|
|
|
#define IPMEDIAIFINDEX 0
|
|
#define IPMEDIAPHYSADDRESS 1
|
|
#define IPMEDIANETADDRESS 2
|
|
#define IPMEDIATYPE 3
|
|
|
|
/* InfiniBand uses HW addr > 6 */
|
|
#define MAX_MAC_ADDR_LEN 32
|
|
|
|
#if defined(linux) || defined(irix6)
|
|
/*
|
|
* arp struct to pass flags, hw-addr and ip-addr in bsd manner:
|
|
*/
|
|
struct arptab {
|
|
int at_flags;
|
|
char at_enaddr[MAX_MAC_ADDR_LEN];
|
|
int at_enaddr_len;
|
|
struct in_addr at_iaddr;
|
|
int if_index;
|
|
};
|
|
#endif
|
|
|
|
#if !defined(WIN32) && !defined(cygwin) && !defined(solaris2)
|
|
void ARP_Scan_Init(void);
|
|
int ARP_Scan_Next(in_addr_t *, char *, int *, u_long *, u_short *);
|
|
#endif
|
|
|
|
#if defined(WIN32) || defined(cygwin)
|
|
config_require(mibII/data_access/at_iphlpapi)
|
|
#elif defined(solaris2)
|
|
config_require(mibII/data_access/at_solaris)
|
|
#elif defined(linux)
|
|
config_require(mibII/data_access/at_linux)
|
|
config_require(mibII/data_access/at_unix)
|
|
#elif defined(HAVE_SYS_SYSCTL_H) && (defined(RTF_LLINFO) || defined(RTF_LLDATA))
|
|
config_require(mibII/data_access/at_sysctl)
|
|
config_require(mibII/data_access/at_unix)
|
|
#elif defined(HAVE_NLIST_H)
|
|
config_require(mibII/data_access/at_nlist)
|
|
config_require(mibII/data_access/at_unix)
|
|
#endif
|
|
|
|
#endif /* _MIBGROUP_AT_H */
|