2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2009-04-09 12:35:13 +00:00
|
|
|
#ifndef LL_MAP_H
|
|
|
|
#define LL_MAP_H 1
|
2002-11-10 01:33:55 +00:00
|
|
|
|
2009-04-09 12:35:13 +00:00
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 17:59:34 +00:00
|
|
|
|
2009-06-05 10:06:05 +00:00
|
|
|
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 12:11:20 +00:00
|
|
|
/* int ll_index_to_type(int idx); */
|
2009-06-05 10:06:05 +00:00
|
|
|
unsigned ll_index_to_flags(int idx) FAST_FUNC;
|
2002-11-10 01:33:55 +00:00
|
|
|
|
2009-04-09 12:35:13 +00:00
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2008-05-09 17:59:34 +00:00
|
|
|
|
2009-04-09 12:35:13 +00:00
|
|
|
#endif
|