2021-10-19 12:43:28 +02:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-26 00:05:31 +01:00
|
|
|
#ifndef DHCP_H
|
|
|
|
#define DHCP_H
|
|
|
|
|
2022-03-26 07:23:21 +01:00
|
|
|
int dhcp(const struct ctx *c, const struct pool *p);
|
2021-10-05 21:15:01 +02:00
|
|
|
void dhcp_init(void);
|
2022-03-26 00:05:31 +01:00
|
|
|
|
|
|
|
#endif /* DHCP_H */
|