]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/systemd/sd-dhcp-server.h
networkd: Add EmitRouter= option for DHCP Server (#3251)
[thirdparty/systemd.git] / src / systemd / sd-dhcp-server.h
CommitLineData
b44cd882
TG
1#ifndef foosddhcpserverhfoo
2#define foosddhcpserverhfoo
3
4/***
5 This file is part of systemd.
6
7 Copyright (C) 2013 Intel Corporation. All rights reserved.
8 Copyright (C) 2014 Tom Gundersen
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
04c01369 24#include <inttypes.h>
b44cd882
TG
25#include <netinet/in.h>
26
27#include "sd-event.h"
71d35b6b 28
04c01369
LP
29#include "_sd-common.h"
30
31_SD_BEGIN_DECLARATIONS;
b44cd882
TG
32
33typedef struct sd_dhcp_server sd_dhcp_server;
34
1a04db0f
LP
35int sd_dhcp_server_new(sd_dhcp_server **ret, int ifindex);
36
b44cd882
TG
37sd_dhcp_server *sd_dhcp_server_ref(sd_dhcp_server *server);
38sd_dhcp_server *sd_dhcp_server_unref(sd_dhcp_server *server);
39
32d20645 40int sd_dhcp_server_attach_event(sd_dhcp_server *client, sd_event *event, int64_t priority);
b44cd882
TG
41int sd_dhcp_server_detach_event(sd_dhcp_server *client);
42sd_event *sd_dhcp_server_get_event(sd_dhcp_server *client);
43
04c01369 44int sd_dhcp_server_is_running(sd_dhcp_server *server);
7c16313f 45
ff734080
TG
46int sd_dhcp_server_start(sd_dhcp_server *server);
47int sd_dhcp_server_stop(sd_dhcp_server *server);
48
99634696 49int sd_dhcp_server_configure_pool(sd_dhcp_server *server, struct in_addr *address, unsigned char prefixlen, uint32_t offset, uint32_t size);
52750344 50
8eb9058d 51int sd_dhcp_server_set_timezone(sd_dhcp_server *server, const char *timezone);
1a04db0f
LP
52int sd_dhcp_server_set_dns(sd_dhcp_server *server, const struct in_addr ntp[], unsigned n);
53int sd_dhcp_server_set_ntp(sd_dhcp_server *server, const struct in_addr dns[], unsigned n);
77ff6022 54int sd_dhcp_server_set_emit_router(sd_dhcp_server *server, int enabled);
8eb9058d 55
586ac6f7
LP
56int sd_dhcp_server_set_max_lease_time(sd_dhcp_server *server, uint32_t t);
57int sd_dhcp_server_set_default_lease_time(sd_dhcp_server *server, uint32_t t);
58
52750344 59int sd_dhcp_server_forcerenew(sd_dhcp_server *server);
1a04db0f 60
4afd3348
LP
61_SD_DEFINE_POINTER_CLEANUP_FUNC(sd_dhcp_server, sd_dhcp_server_unref);
62
04c01369
LP
63_SD_END_DECLARATIONS;
64
b44cd882 65#endif