Turn "used" member of struct iname into flags in preparation for more.

This commit is contained in:
Simon Kelley
2023-04-12 16:25:49 +01:00
parent 15dcdc824a
commit 597378cdf5
5 changed files with 22 additions and 11 deletions

View File

@@ -664,10 +664,12 @@ struct listener {
struct iname {
char *name;
union mysockaddr addr;
int used;
int flags;
struct iname *next;
};
#define INAME_USED 1
struct rrlist {
unsigned short rr;
struct rrlist *next;