]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/systemd/sd-dhcp-server.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / systemd / sd-dhcp-server.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #ifndef foosddhcpserverhfoo
3 #define foosddhcpserverhfoo
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 <netinet/in.h>
27
28 #include "sd-event.h"
29
30 #include "_sd-common.h"
31
32 _SD_BEGIN_DECLARATIONS;
33
34 typedef struct sd_dhcp_server sd_dhcp_server;
35
36 int sd_dhcp_server_new(sd_dhcp_server **ret, int ifindex);
37
38 sd_dhcp_server *sd_dhcp_server_ref(sd_dhcp_server *server);
39 sd_dhcp_server *sd_dhcp_server_unref(sd_dhcp_server *server);
40
41 int sd_dhcp_server_attach_event(sd_dhcp_server *client, sd_event *event, int64_t priority);
42 int sd_dhcp_server_detach_event(sd_dhcp_server *client);
43 sd_event *sd_dhcp_server_get_event(sd_dhcp_server *client);
44
45 int sd_dhcp_server_is_running(sd_dhcp_server *server);
46
47 int sd_dhcp_server_start(sd_dhcp_server *server);
48 int sd_dhcp_server_stop(sd_dhcp_server *server);
49
50 int sd_dhcp_server_configure_pool(sd_dhcp_server *server, struct in_addr *address, unsigned char prefixlen, uint32_t offset, uint32_t size);
51
52 int sd_dhcp_server_set_timezone(sd_dhcp_server *server, const char *timezone);
53 int sd_dhcp_server_set_dns(sd_dhcp_server *server, const struct in_addr ntp[], unsigned n);
54 int sd_dhcp_server_set_ntp(sd_dhcp_server *server, const struct in_addr dns[], unsigned n);
55 int sd_dhcp_server_set_emit_router(sd_dhcp_server *server, int enabled);
56
57 int sd_dhcp_server_set_max_lease_time(sd_dhcp_server *server, uint32_t t);
58 int sd_dhcp_server_set_default_lease_time(sd_dhcp_server *server, uint32_t t);
59
60 int sd_dhcp_server_forcerenew(sd_dhcp_server *server);
61
62 _SD_DEFINE_POINTER_CLEANUP_FUNC(sd_dhcp_server, sd_dhcp_server_unref);
63
64 _SD_END_DECLARATIONS;
65
66 #endif