mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 12:48:43 +00:00
cf_symbol_class_name now recognizes SYM_IPA.
This commit is contained in:
parent
3d675cdbe7
commit
c0b2f6463f
@ -349,6 +349,8 @@ cf_symbol_class_name(struct symbol *sym)
|
||||
return "filter";
|
||||
case SYM_TABLE:
|
||||
return "routing table";
|
||||
case SYM_IPA:
|
||||
return "network address";
|
||||
default:
|
||||
return "unknown type";
|
||||
}
|
||||
|
@ -81,6 +81,7 @@ struct symbol {
|
||||
char name[1];
|
||||
};
|
||||
|
||||
/* Remember to update cf_symbol_class_name() */
|
||||
#define SYM_VOID 0
|
||||
#define SYM_PROTO 1
|
||||
#define SYM_NUMBER 2
|
||||
|
Loading…
Reference in New Issue
Block a user