diff options
Diffstat (limited to 'networking/libiproute/rt_names.h')
-rw-r--r-- | networking/libiproute/rt_names.h | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/networking/libiproute/rt_names.h b/networking/libiproute/rt_names.h index 97bc6169f..ed090a13b 100644 --- a/networking/libiproute/rt_names.h +++ b/networking/libiproute/rt_names.h | |||
@@ -3,28 +3,26 @@ | |||
3 | 3 | ||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | 5 | ||
6 | const char* rtnl_rtprot_n2a(int id, char *buf, int len); | 6 | extern const char* rtnl_rtprot_n2a(int id, char *buf, int len); |
7 | const char* rtnl_rtscope_n2a(int id, char *buf, int len); | 7 | extern const char* rtnl_rtscope_n2a(int id, char *buf, int len); |
8 | const char* rtnl_rttable_n2a(int id, char *buf, int len); | 8 | extern const char* rtnl_rttable_n2a(int id, char *buf, int len); |
9 | const char* rtnl_rtrealm_n2a(int id, char *buf, int len); | 9 | extern const char* rtnl_rtrealm_n2a(int id, char *buf, int len); |
10 | const char* rtnl_dsfield_n2a(int id, char *buf, int len); | 10 | extern const char* rtnl_dsfield_n2a(int id, char *buf, int len); |
11 | int rtnl_rtprot_a2n(int *id, char *arg); | 11 | extern int rtnl_rtprot_a2n(uint32_t *id, char *arg); |
12 | int rtnl_rtscope_a2n(int *id, char *arg); | 12 | extern int rtnl_rtscope_a2n(uint32_t *id, char *arg); |
13 | int rtnl_rttable_a2n(int *id, char *arg); | 13 | extern int rtnl_rttable_a2n(uint32_t *id, char *arg); |
14 | int rtnl_rtrealm_a2n(uint32_t *id, char *arg); | 14 | extern int rtnl_rtrealm_a2n(uint32_t *id, char *arg); |
15 | int rtnl_dsfield_a2n(uint32_t *id, char *arg); | 15 | extern int rtnl_dsfield_a2n(uint32_t *id, char *arg); |
16 | 16 | ||
17 | const char *inet_proto_n2a(int proto, char *buf, int len); | 17 | |
18 | int inet_proto_a2n(char *buf); | 18 | extern const char * ll_type_n2a(int type, char *buf, int len); |
19 | 19 | ||
20 | 20 | extern const char *ll_addr_n2a(unsigned char *addr, int alen, int type, | |
21 | const char * ll_type_n2a(int type, char *buf, int len); | 21 | char *buf, int blen); |
22 | 22 | extern int ll_addr_a2n(unsigned char *lladdr, int len, char *arg); | |
23 | const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen); | 23 | |
24 | int ll_addr_a2n(unsigned char *lladdr, int len, char *arg); | 24 | extern const char * ll_proto_n2a(unsigned short id, char *buf, int len); |
25 | 25 | extern int ll_proto_a2n(unsigned short *id, char *buf); | |
26 | const char * ll_proto_n2a(unsigned short id, char *buf, int len); | ||
27 | int ll_proto_a2n(unsigned short *id, char *buf); | ||
28 | 26 | ||
29 | 27 | ||
30 | #endif | 28 | #endif |