mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-05 10:53:35 +00:00

If '-nm' specified that do not fail if there is no default class names file in /etc/iproute2. Changed default class name file cls_names -> tc_cls. Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
27 lines
517 B
C
27 lines
517 B
C
#ifndef DB_NAMES_H_
|
|
#define DB_NAMES_H_ 1
|
|
|
|
#define IDNAME_MAX 256
|
|
|
|
struct db_entry {
|
|
struct db_entry *next;
|
|
unsigned int id;
|
|
char *name;
|
|
};
|
|
|
|
struct db_names {
|
|
unsigned int size;
|
|
struct db_entry *cached;
|
|
struct db_entry **hash;
|
|
int max;
|
|
};
|
|
|
|
struct db_names *db_names_alloc(void);
|
|
int db_names_load(struct db_names *db, const char *path);
|
|
void db_names_free(struct db_names *db);
|
|
|
|
char *id_to_name(struct db_names *db, int id, char *name);
|
|
int name_to_id(struct db_names *db, int *id, const char *name);
|
|
|
|
#endif
|