2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 07:03:55 +05:30
|
|
|
#ifndef __UTILS_H__
|
|
|
|
#define __UTILS_H__ 1
|
|
|
|
|
|
|
|
#include "libnetlink.h"
|
|
|
|
#include "ll_map.h"
|
|
|
|
#include "rtm_map.h"
|
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility push(hidden)
|
|
|
|
#endif
|
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
extern family_t preferred_family;
|
2007-04-07 06:44:45 +05:30
|
|
|
extern smallint show_stats; /* UNUSED */
|
|
|
|
extern smallint show_details; /* UNUSED */
|
|
|
|
extern smallint show_raw; /* UNUSED */
|
|
|
|
extern smallint resolve_hosts; /* UNUSED */
|
|
|
|
extern smallint oneline;
|
|
|
|
extern char _SL_;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
#ifndef IPPROTO_ESP
|
|
|
|
#define IPPROTO_ESP 50
|
|
|
|
#endif
|
|
|
|
#ifndef IPPROTO_AH
|
|
|
|
#define IPPROTO_AH 51
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define SPRINT_BSIZE 64
|
|
|
|
#define SPRINT_BUF(x) char x[SPRINT_BSIZE]
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
extern void incomplete_command(void) NORETURN;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
#define NEXT_ARG() do { if (!*++argv) incomplete_command(); } while (0)
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2008-05-31 13:03:18 +05:30
|
|
|
typedef struct {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint8_t family;
|
|
|
|
uint8_t bytelen;
|
|
|
|
int16_t bitlen;
|
|
|
|
uint32_t data[4];
|
2002-11-10 07:03:55 +05:30
|
|
|
} inet_prefix;
|
|
|
|
|
2008-10-21 18:12:45 +05:30
|
|
|
#define PREFIXLEN_SPECIFIED 1
|
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
#define DN_MAXADDL 20
|
|
|
|
#ifndef AF_DECnet
|
|
|
|
#define AF_DECnet 12
|
|
|
|
#endif
|
|
|
|
|
2007-01-30 04:21:25 +05:30
|
|
|
struct dn_naddr {
|
2008-02-16 18:48:17 +05:30
|
|
|
unsigned short a_len;
|
|
|
|
unsigned char a_addr[DN_MAXADDL];
|
2002-11-10 07:03:55 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
#define IPX_NODE_LEN 6
|
|
|
|
|
|
|
|
struct ipx_addr {
|
2004-01-31 04:29:50 +05:30
|
|
|
uint32_t ipx_net;
|
|
|
|
uint8_t ipx_node[IPX_NODE_LEN];
|
2002-11-10 07:03:55 +05:30
|
|
|
};
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
extern uint32_t get_addr32(char *name);
|
2002-11-10 07:03:55 +05:30
|
|
|
extern int get_addr_1(inet_prefix *dst, char *arg, int family);
|
2009-03-03 20:25:29 +05:30
|
|
|
/*extern int get_prefix_1(inet_prefix *dst, char *arg, int family);*/
|
2002-11-10 07:03:55 +05:30
|
|
|
extern int get_addr(inet_prefix *dst, char *arg, int family);
|
|
|
|
extern int get_prefix(inet_prefix *dst, char *arg, int family);
|
|
|
|
|
2009-03-05 14:51:57 +05:30
|
|
|
extern unsigned get_unsigned(char *arg, const char *errmsg);
|
|
|
|
extern uint32_t get_u32(char *arg, const char *errmsg);
|
|
|
|
extern uint16_t get_u16(char *arg, const char *errmsg);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2009-03-05 14:51:57 +05:30
|
|
|
extern const char *rt_addr_n2a(int af, void *addr, char *buf, int buflen);
|
|
|
|
#ifdef RESOLVE_HOSTNAMES
|
2002-11-10 07:03:55 +05:30
|
|
|
extern const char *format_host(int af, int len, void *addr, char *buf, int buflen);
|
2009-03-05 14:51:57 +05:30
|
|
|
#else
|
|
|
|
#define format_host(af, len, addr, buf, buflen) \
|
|
|
|
rt_addr_n2a(af, addr, buf, buflen)
|
|
|
|
#endif
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
void invarg(const char *, const char *) NORETURN;
|
|
|
|
void duparg(const char *, const char *) NORETURN;
|
|
|
|
void duparg2(const char *, const char *) NORETURN;
|
2007-04-07 06:44:45 +05:30
|
|
|
int inet_addr_match(inet_prefix *a, inet_prefix *b, int bits);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
const char *dnet_ntop(int af, const void *addr, char *str, size_t len);
|
|
|
|
int dnet_pton(int af, const char *src, void *addr);
|
|
|
|
|
|
|
|
const char *ipx_ntop(int af, const void *addr, char *str, size_t len);
|
|
|
|
int ipx_pton(int af, const char *src, void *addr);
|
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility pop
|
|
|
|
#endif
|
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif /* __UTILS_H__ */
|