diff options
author | Tom Gundersen <teg@jklm.no> | 2015-11-23 22:53:30 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-11-23 22:53:30 +0100 |
commit | 1f233d4c24a6c95d34cf0fe5d9c31b5440102479 (patch) | |
tree | 06a8eb4a76bc956f2b210f5c208ae51c7a9efa59 /src/resolve/resolved-def.h | |
parent | e429762faaac0c49353d35144a9d45d283e91213 (diff) | |
parent | 45ec7efb6c2560c80dfa752bc9d3733749dc52cb (diff) |
Merge pull request #2007 from poettering/resolve-srv
resolved: add support for resolving plain SRV and DNS-SD services
Diffstat (limited to 'src/resolve/resolved-def.h')
-rw-r--r-- | src/resolve/resolved-def.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/resolve/resolved-def.h b/src/resolve/resolved-def.h index 086d111205..85af1923ff 100644 --- a/src/resolve/resolved-def.h +++ b/src/resolve/resolved-def.h @@ -24,7 +24,9 @@ #define SD_RESOLVED_DNS ((uint64_t) 1) #define SD_RESOLVED_LLMNR_IPV4 ((uint64_t) 2) #define SD_RESOLVED_LLMNR_IPV6 ((uint64_t) 4) -#define SD_RESOLVED_LLMNR (SD_RESOLVED_LLMNR_IPV4|SD_RESOLVED_LLMNR_IPV6) +#define SD_RESOLVED_NO_CNAME ((uint64_t) 8) +#define SD_RESOLVED_NO_TXT ((uint64_t) 16) +#define SD_RESOLVED_NO_ADDRESS ((uint64_t) 32) -#define SD_RESOLVED_FLAGS_ALL (SD_RESOLVED_DNS|SD_RESOLVED_LLMNR_IPV4|SD_RESOLVED_LLMNR_IPV6) -#define SD_RESOLVED_FLAGS_DEFAULT SD_RESOLVED_FLAGS_ALL +#define SD_RESOLVED_LLMNR (SD_RESOLVED_LLMNR_IPV4|SD_RESOLVED_LLMNR_IPV6) +#define SD_RESOLVED_PROTOCOLS_ALL (SD_RESOLVED_LLMNR|SD_RESOLVED_DNS) |