]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-def.h
Merge pull request #7388 from keszybz/doc-tweak
[thirdparty/systemd.git] / src / resolve / resolved-def.h
CommitLineData
51323288
LP
1#pragma once
2
3/***
4 This file is part of systemd.
5
6 Copyright 2014 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
e53c6e4a
LP
22#include <inttypes.h>
23
b05f5ae7
LP
24#define SD_RESOLVED_DNS (UINT64_C(1) << 0)
25#define SD_RESOLVED_LLMNR_IPV4 (UINT64_C(1) << 1)
26#define SD_RESOLVED_LLMNR_IPV6 (UINT64_C(1) << 2)
4e5bf5e1
DM
27#define SD_RESOLVED_MDNS_IPV4 (UINT64_C(1) << 3)
28#define SD_RESOLVED_MDNS_IPV6 (UINT64_C(1) << 4)
b05f5ae7
LP
29#define SD_RESOLVED_NO_CNAME (UINT64_C(1) << 5)
30#define SD_RESOLVED_NO_TXT (UINT64_C(1) << 6)
31#define SD_RESOLVED_NO_ADDRESS (UINT64_C(1) << 7)
32#define SD_RESOLVED_NO_SEARCH (UINT64_C(1) << 8)
931851e8 33#define SD_RESOLVED_AUTHENTICATED (UINT64_C(1) << 9)
51323288 34
45ec7efb 35#define SD_RESOLVED_LLMNR (SD_RESOLVED_LLMNR_IPV4|SD_RESOLVED_LLMNR_IPV6)
4e5bf5e1
DM
36#define SD_RESOLVED_MDNS (SD_RESOLVED_MDNS_IPV4|SD_RESOLVED_MDNS_IPV6)
37
38#define SD_RESOLVED_PROTOCOLS_ALL (SD_RESOLVED_MDNS|SD_RESOLVED_LLMNR|SD_RESOLVED_DNS)