Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/networking/libiproute/rt_names.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (hide annotations) (download)
Sun May 30 11:32:42 2010 UTC (14 years ago) by niro
File MIME type: text/plain
File size: 1226 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 niro 532 /* vi: set sw=4 ts=4: */
2 niro 984 #ifndef RT_NAMES_H
3     #define RT_NAMES_H 1
4 niro 532
5 niro 984 PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
6 niro 532
7 niro 984 /* buf is SPRINT_BSIZE big */
8     extern const char* rtnl_rtprot_n2a(int id, char *buf) FAST_FUNC;
9     extern const char* rtnl_rtscope_n2a(int id, char *buf) FAST_FUNC;
10     extern const char* rtnl_rtrealm_n2a(int id, char *buf) FAST_FUNC;
11     extern const char* rtnl_dsfield_n2a(int id, char *buf) FAST_FUNC;
12     extern const char* rtnl_rttable_n2a(int id, char *buf) FAST_FUNC;
13     extern int rtnl_rtprot_a2n(uint32_t *id, char *arg) FAST_FUNC;
14     extern int rtnl_rtscope_a2n(uint32_t *id, char *arg) FAST_FUNC;
15     extern int rtnl_rtrealm_a2n(uint32_t *id, char *arg) FAST_FUNC;
16     extern int rtnl_dsfield_a2n(uint32_t *id, char *arg) FAST_FUNC;
17     extern int rtnl_rttable_a2n(uint32_t *id, char *arg) FAST_FUNC;
18 niro 532
19 niro 984 extern const char* ll_type_n2a(int type, char *buf) FAST_FUNC;
20 niro 532
21 niro 816 extern const char* ll_addr_n2a(unsigned char *addr, int alen, int type,
22 niro 984 char *buf, int blen) FAST_FUNC;
23     extern int ll_addr_a2n(unsigned char *lladdr, int len, char *arg) FAST_FUNC;
24 niro 532
25 niro 984 extern const char* ll_proto_n2a(unsigned short id, char *buf, int len) FAST_FUNC;
26     extern int ll_proto_a2n(unsigned short *id, char *buf) FAST_FUNC;
27 niro 816
28 niro 984 POP_SAVED_FUNCTION_VISIBILITY
29 niro 532
30 niro 816 #endif