Variables | |
struct nl_object_ops | class_obj_ops |
Allocation/Freeing | |
| |
struct rtnl_class * | rtnl_class_alloc (void) |
void | rtnl_class_put (struct rtnl_class *class) |
Leaf Qdisc | |
| |
struct rtnl_qdisc * | rtnl_class_leaf_qdisc (struct rtnl_class *class, struct nl_cache *cache) |
Lookup the leaf qdisc of a class. | |
Iterators | |
| |
void | rtnl_class_foreach_child (struct rtnl_class *class, struct nl_cache *cache, void(*cb)(struct nl_object *, void *), void *arg) |
Call a callback for each child of a class. | |
void | rtnl_class_foreach_cls (struct rtnl_class *class, struct nl_cache *cache, void(*cb)(struct nl_object *, void *), void *arg) |
Call a callback for each classifier attached to the class. | |
Attributes | |
| |
void | rtnl_class_set_ifindex (struct rtnl_class *class, int ifindex) |
int | rtnl_class_get_ifindex (struct rtnl_class *class) |
void | rtnl_class_set_handle (struct rtnl_class *class, uint32_t handle) |
uint32_t | rtnl_class_get_handle (struct rtnl_class *class) |
void | rtnl_class_set_parent (struct rtnl_class *class, uint32_t parent) |
uint32_t | rtnl_class_get_parent (struct rtnl_class *class) |
void | rtnl_class_set_kind (struct rtnl_class *class, const char *name) |
char * | rtnl_class_get_kind (struct rtnl_class *class) |
uint64_t | rtnl_class_get_stat (struct rtnl_class *class, enum rtnl_tc_stats_id id) |
struct rtnl_qdisc* rtnl_class_leaf_qdisc | ( | struct rtnl_class * | class, | |
struct nl_cache * | cache | |||
) | [read] |
class | the parent class | |
cache | a qdisc cache including at laest all qdiscs of the interface the specified class is attached to |
Definition at line 137 of file class_obj.c.
References rtnl_qdisc_get_by_parent().
void rtnl_class_foreach_child | ( | struct rtnl_class * | class, | |
struct nl_cache * | cache, | |||
void(*)(struct nl_object *, void *) | cb, | |||
void * | arg | |||
) |
class | the parent class | |
cache | a class cache including all classes of the interface the specified class is attached to | |
cb | callback function | |
arg | argument to be passed to callback function |
Definition at line 169 of file class_obj.c.
References nl_cache_foreach_filter().
void rtnl_class_foreach_cls | ( | struct rtnl_class * | class, | |
struct nl_cache * | cache, | |||
void(*)(struct nl_object *, void *) | cb, | |||
void * | arg | |||
) |
class | the parent class | |
cache | a filter cache including at least all the filters attached to the specified class | |
cb | callback function | |
arg | argument to be passed to callback function |
Definition at line 194 of file class_obj.c.
References nl_cache_foreach_filter().
struct nl_object_ops class_obj_ops |
{ .oo_name = "route/class", .oo_size = sizeof(struct rtnl_class), .oo_free_data = class_free_data, .oo_clone = class_clone, .oo_dump = { [NL_DUMP_LINE] = class_dump_line, [NL_DUMP_DETAILS] = class_dump_details, [NL_DUMP_STATS] = class_dump_stats, }, .oo_compare = tca_compare, .oo_id_attrs = (TCA_ATTR_IFINDEX | TCA_ATTR_HANDLE), }
Definition at line 267 of file class_obj.c.