/* SPDX-License-Identifier: GPL-2.0-or-later * Copyright (c) 2021 Red Hat GmbH * Author: Stefano Brivio */ #ifndef DHCP_H #define DHCP_H int dhcp(const struct ctx *c, struct iov_tail *data); void dhcp_init(void); int dhcp_add_option(struct ctx *c, uint8_t code, const char *val_str); #endif /* DHCP_H */