X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fnetwork%2Fnetworkd.h;h=d5c229cf4620b361f384643739d9bbde64a1a7a5;hb=6d0c65ffb4f82e8c6dceb453919b3db54343fc27;hp=5d7a08be0cf672bf56aa630958ccbacdc80b84f6;hpb=afe7fd56f5b5b81294dcb794214f97fc5e39dfea;p=elogind.git diff --git a/src/network/networkd.h b/src/network/networkd.h index 5d7a08be0..d5c229cf4 100644 --- a/src/network/networkd.h +++ b/src/network/networkd.h @@ -61,6 +61,14 @@ typedef enum DHCPSupport { _DHCP_SUPPORT_INVALID = -1, } DHCPSupport; +typedef enum LLMNRSupport { + LLMNR_SUPPORT_NO, + LLMNR_SUPPORT_YES, + LLMNR_SUPPORT_RESOLVE, + _LLMNR_SUPPORT_MAX, + _LLMNR_SUPPORT_INVALID = -1, +} LLMNRSupport; + struct Network { Manager *manager; @@ -105,6 +113,8 @@ struct Network { char **dns, **ntp; + LLMNRSupport llmnr; + LIST_FIELDS(Network, networks); }; @@ -383,6 +393,15 @@ int config_parse_dhcp(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); +/* LLMNR support */ + +const char* llmnr_support_to_string(LLMNRSupport i) _const_; +LLMNRSupport llmnr_support_from_string(const char *s) _pure_; + +int config_parse_llmnr(const char *unit, const char *filename, unsigned line, + const char *section, unsigned section_line, const char *lvalue, + int ltype, const char *rvalue, void *data, void *userdata); + /* Address Pool */ int address_pool_new(Manager *m, AddressPool **ret, int family, const union in_addr_union *u, unsigned prefixlen);