]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/systemd/sd-dhcp-lease.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / systemd / sd-dhcp-lease.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #ifndef foosddhcpleasehfoo
3 #define foosddhcpleasehfoo
4
5 /***
6 This file is part of systemd.
7
8 Copyright (C) 2013 Intel Corporation. All rights reserved.
9 Copyright (C) 2014 Tom Gundersen
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 <net/ethernet.h>
27 #include <netinet/in.h>
28 #include <sys/types.h>
29
30 #include "_sd-common.h"
31
32 _SD_BEGIN_DECLARATIONS;
33
34 typedef struct sd_dhcp_lease sd_dhcp_lease;
35 typedef struct sd_dhcp_route sd_dhcp_route;
36
37 sd_dhcp_lease *sd_dhcp_lease_ref(sd_dhcp_lease *lease);
38 sd_dhcp_lease *sd_dhcp_lease_unref(sd_dhcp_lease *lease);
39
40 int sd_dhcp_lease_get_address(sd_dhcp_lease *lease, struct in_addr *addr);
41 int sd_dhcp_lease_get_lifetime(sd_dhcp_lease *lease, uint32_t *lifetime);
42 int sd_dhcp_lease_get_t1(sd_dhcp_lease *lease, uint32_t *t1);
43 int sd_dhcp_lease_get_t2(sd_dhcp_lease *lease, uint32_t *t2);
44 int sd_dhcp_lease_get_broadcast(sd_dhcp_lease *lease, struct in_addr *addr);
45 int sd_dhcp_lease_get_netmask(sd_dhcp_lease *lease, struct in_addr *addr);
46 int sd_dhcp_lease_get_router(sd_dhcp_lease *lease, struct in_addr *addr);
47 int sd_dhcp_lease_get_next_server(sd_dhcp_lease *lease, struct in_addr *addr);
48 int sd_dhcp_lease_get_server_identifier(sd_dhcp_lease *lease, struct in_addr *addr);
49 int sd_dhcp_lease_get_dns(sd_dhcp_lease *lease, const struct in_addr **addr);
50 int sd_dhcp_lease_get_ntp(sd_dhcp_lease *lease, const struct in_addr **addr);
51 int sd_dhcp_lease_get_mtu(sd_dhcp_lease *lease, uint16_t *mtu);
52 int sd_dhcp_lease_get_domainname(sd_dhcp_lease *lease, const char **domainname);
53 int sd_dhcp_lease_get_search_domains(sd_dhcp_lease *lease, char ***domains);
54 int sd_dhcp_lease_get_hostname(sd_dhcp_lease *lease, const char **hostname);
55 int sd_dhcp_lease_get_root_path(sd_dhcp_lease *lease, const char **root_path);
56 int sd_dhcp_lease_get_routes(sd_dhcp_lease *lease, sd_dhcp_route ***routes);
57 int sd_dhcp_lease_get_vendor_specific(sd_dhcp_lease *lease, const void **data, size_t *data_len);
58 int sd_dhcp_lease_get_client_id(sd_dhcp_lease *lease, const void **client_id, size_t *client_id_len);
59 int sd_dhcp_lease_get_timezone(sd_dhcp_lease *lease, const char **timezone);
60
61 int sd_dhcp_route_get_destination(sd_dhcp_route *route, struct in_addr *destination);
62 int sd_dhcp_route_get_destination_prefix_length(sd_dhcp_route *route, uint8_t *length);
63 int sd_dhcp_route_get_gateway(sd_dhcp_route *route, struct in_addr *gateway);
64
65 _SD_DEFINE_POINTER_CLEANUP_FUNC(sd_dhcp_lease, sd_dhcp_lease_unref);
66
67 _SD_END_DECLARATIONS;
68
69 #endif