- add 'ip rule' support. First take..

text    data     bss     dec     hex filename
   2999       0       0    2999     bb7 networking/libiproute/iprule.o
This commit is contained in:
Bernhard Reutner-Fischer
2006-11-21 15:36:08 +00:00
parent 04b30ba3b8
commit 921f5df25f
14 changed files with 497 additions and 28 deletions

View File

@@ -6,11 +6,14 @@
extern const char* rtnl_rtprot_n2a(int id, char *buf, int len);
extern const char* rtnl_rtscope_n2a(int id, char *buf, int len);
extern const char* rtnl_rtrealm_n2a(int id, char *buf, int len);
extern const char* rtnl_dsfield_n2a(int id, char *buf, int len);
extern const char* rtnl_rttable_n2a(int id, char *buf, int len);
extern int rtnl_rtprot_a2n(uint32_t *id, char *arg);
extern int rtnl_rtscope_a2n(uint32_t *id, char *arg);
extern int rtnl_rtrealm_a2n(uint32_t *id, char *arg);
extern int rtnl_dsfield_a2n(uint32_t *id, char *arg);
extern int rtnl_rttable_a2n(uint32_t *id, char *arg);
extern const char * ll_type_n2a(int type, char *buf, int len);