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