826bdcd51c
function old new delta get_addr_1 258 287 +29 next_arg - 22 +22 print_neigh 885 902 +17 do_iplink 1269 1276 +7 get_unsigned 54 55 +1 get_u32 54 55 +1 get_u16 62 63 +1 rt_addr_n2a 53 52 -1 ipaddr_modify 1229 1226 -3 get_addr32 58 54 -4 invarg_1_to_2 18 12 -6 inet_addr_match 109 103 -6 duparg2 18 12 -6 duparg 18 12 -6 print_addrinfo 1231 1223 -8 ipneigh_list_or_flush 724 714 -10 incomplete_command 10 - -10 iproute_get 847 835 -12 ipaddr_list_or_flush 1265 1253 -12 get_prefix 356 344 -12 do_add_or_delete 1162 1150 -12 get_addr 73 58 -15 iproute_list_or_flush 1210 1191 -19 parse_args 1434 1412 -22 print_rule 634 610 -24 iprule_modify 864 816 -48 print_route 1621 1565 -56 iproute_modify 1221 1164 -57 ------------------------------------------------------------------------------ (add/remove: 1/1 grow/shrink: 6/20 up/down: 78/-349) Total: -271 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
93 lines
2.3 KiB
C
93 lines
2.3 KiB
C
/* vi: set sw=4 ts=4: */
|
|
#ifndef UTILS_H
|
|
#define UTILS_H 1
|
|
|
|
#include "libnetlink.h"
|
|
#include "ll_map.h"
|
|
#include "rtm_map.h"
|
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
|
|
|
extern family_t preferred_family;
|
|
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_;
|
|
|
|
#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]
|
|
|
|
typedef struct {
|
|
uint8_t family;
|
|
uint8_t bytelen;
|
|
int16_t bitlen;
|
|
uint32_t data[4];
|
|
} inet_prefix;
|
|
|
|
#define PREFIXLEN_SPECIFIED 1
|
|
|
|
#define DN_MAXADDL 20
|
|
#ifndef AF_DECnet
|
|
#define AF_DECnet 12
|
|
#endif
|
|
|
|
struct dn_naddr {
|
|
unsigned short a_len;
|
|
unsigned char a_addr[DN_MAXADDL];
|
|
};
|
|
|
|
#define IPX_NODE_LEN 6
|
|
|
|
struct ipx_addr {
|
|
uint32_t ipx_net;
|
|
uint8_t ipx_node[IPX_NODE_LEN];
|
|
};
|
|
|
|
char** next_arg(char **argv) FAST_FUNC;
|
|
#define NEXT_ARG() do { argv = next_arg(argv); } while (0)
|
|
|
|
uint32_t get_addr32(char *name) FAST_FUNC;
|
|
int get_addr_1(inet_prefix *dst, char *arg, int family) FAST_FUNC;
|
|
/*void get_prefix_1(inet_prefix *dst, char *arg, int family) FAST_FUNC;*/
|
|
int get_addr(inet_prefix *dst, char *arg, int family) FAST_FUNC;
|
|
void get_prefix(inet_prefix *dst, char *arg, int family) FAST_FUNC;
|
|
|
|
unsigned get_unsigned(char *arg, const char *errmsg) FAST_FUNC;
|
|
uint32_t get_u32(char *arg, const char *errmsg) FAST_FUNC;
|
|
uint16_t get_u16(char *arg, const char *errmsg) FAST_FUNC;
|
|
|
|
const char *rt_addr_n2a(int af, void *addr) FAST_FUNC;
|
|
#ifdef RESOLVE_HOSTNAMES
|
|
const char *format_host(int af, int len, void *addr) FAST_FUNC;
|
|
#else
|
|
#define format_host(af, len, addr) \
|
|
rt_addr_n2a(af, addr)
|
|
#endif
|
|
|
|
void invarg_1_to_2(const char *, const char *) FAST_FUNC NORETURN;
|
|
void duparg(const char *, const char *) FAST_FUNC NORETURN;
|
|
void duparg2(const char *, const char *) FAST_FUNC NORETURN;
|
|
|
|
int inet_addr_match(const inet_prefix *a, const inet_prefix *b, int bits) FAST_FUNC;
|
|
|
|
//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);
|
|
|
|
unsigned get_hz(void) FAST_FUNC;
|
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
|
|
|
#endif
|