state: add interface alias support

This commit is contained in:
Ariadne Conill 2020-07-20 07:45:39 -06:00
parent d4e1997486
commit 6fe4630f52
2 changed files with 17 additions and 0 deletions

View file

@ -22,5 +22,6 @@
extern void lif_state_upsert(struct lif_dict *state, const char *ifname, struct lif_interface *iface);
extern void lif_state_delete(struct lif_dict *state, const char *ifname);
extern void lif_state_write(const struct lif_dict *state, FILE *f);
extern struct lif_interface *lif_state_lookup(struct lif_dict *state, struct lif_dict *if_collection, const char *ifname);
#endif