]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/systemd/sd-dhcp6-lease.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / systemd / sd-dhcp6-lease.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #ifndef foosddhcp6leasehfoo
3 #define foosddhcp6leasehfoo
4
5 /***
6 This file is part of systemd.
7
8 Copyright (C) 2014 Tom Gundersen
9 Copyright (C) 2014-2015 Intel Corporation. All rights reserved.
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU Lesser General Public License as published by
13 the Free Software Foundation; either version 2.1 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <inttypes.h>
26 #include <netinet/in.h>
27
28 #include "_sd-common.h"
29
30 _SD_BEGIN_DECLARATIONS;
31
32 typedef struct sd_dhcp6_lease sd_dhcp6_lease;
33
34 void sd_dhcp6_lease_reset_address_iter(sd_dhcp6_lease *lease);
35 int sd_dhcp6_lease_get_address(sd_dhcp6_lease *lease,
36 struct in6_addr *addr,
37 uint32_t *lifetime_preferred,
38 uint32_t *lifetime_valid);
39
40 int sd_dhcp6_lease_get_dns(sd_dhcp6_lease *lease, struct in6_addr **addrs);
41 int sd_dhcp6_lease_get_domains(sd_dhcp6_lease *lease, char ***domains);
42 int sd_dhcp6_lease_get_ntp_addrs(sd_dhcp6_lease *lease,
43 struct in6_addr **addrs);
44 int sd_dhcp6_lease_get_ntp_fqdn(sd_dhcp6_lease *lease, char ***ntp_fqdn);
45
46 sd_dhcp6_lease *sd_dhcp6_lease_ref(sd_dhcp6_lease *lease);
47 sd_dhcp6_lease *sd_dhcp6_lease_unref(sd_dhcp6_lease *lease);
48
49 _SD_DEFINE_POINTER_CLEANUP_FUNC(sd_dhcp6_lease, sd_dhcp6_lease_unref);
50
51 _SD_END_DECLARATIONS;
52
53 #endif