2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2009-04-09 18:05:13 +05:30
|
|
|
#ifndef LL_MAP_H
|
|
|
|
#define LL_MAP_H 1
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2009-06-05 15:36:05 +05:30
|
|
|
int ll_remember_index(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) FAST_FUNC;
|
|
|
|
int ll_init_map(struct rtnl_handle *rth) FAST_FUNC;
|
|
|
|
int xll_name_to_index(const char *name) FAST_FUNC;
|
|
|
|
const char *ll_index_to_name(int idx) FAST_FUNC;
|
|
|
|
const char *ll_idx_n2a(int idx, char *buf) FAST_FUNC;
|
2007-06-19 17:41:20 +05:30
|
|
|
/* int ll_index_to_type(int idx); */
|
2009-06-05 15:36:05 +05:30
|
|
|
unsigned ll_index_to_flags(int idx) FAST_FUNC;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
#endif
|