ndhc/ifchange.h
Nicholas J. Kain 1732bccccc Relicense as MIT.
It's a lot more common than BSD 2-clause it is both compatible
and nearly identical in effect.
2022-02-06 20:05:29 -05:00

13 lines
323 B
C

// Copyright 2004-2018 Nicholas J. Kain <njkain at gmail dot com>
// SPDX-License-Identifier: MIT
#ifndef IFCHANGE_H_
#define IFCHANGE_H_
#include <stdbool.h>
bool ifchange_carrier_isup(void);
int ifchange_bind(struct client_state_t *cs, struct dhcpmsg *packet);
int ifchange_deconfig(struct client_state_t *cs);
#endif