/* SPDX-License-Identifier: GPL-2.0-or-later * Copyright (c) 2021 Red Hat GmbH * Author: Stefano Brivio */ #ifndef DHCPV6_H #define DHCPV6_H int dhcpv6(struct ctx *c, struct iov_tail *data, struct in6_addr *saddr, struct in6_addr *daddr); void dhcpv6_init(const struct ctx *c); int dhcpv6_opt_parse(uint16_t code, const char *str, uint8_t *buf, size_t buf_len); #endif /* DHCPV6_H */