2022-02-06 20:05:29 -05:00
|
|
|
// Copyright 2004-2018 Nicholas J. Kain <njkain at gmail dot com>
|
|
|
|
// SPDX-License-Identifier: MIT
|
2010-12-24 10:12:41 -05:00
|
|
|
#ifndef IFCHANGE_H_
|
|
|
|
#define IFCHANGE_H_
|
|
|
|
|
2017-01-12 05:25:15 -05:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2021-04-25 05:26:19 -04:00
|
|
|
bool ifchange_carrier_isup(void);
|
2022-01-11 22:35:19 -05:00
|
|
|
int ifchange_bind(struct client_state_t *cs, struct dhcpmsg *packet);
|
|
|
|
int ifchange_deconfig(struct client_state_t *cs);
|
2010-12-24 10:12:41 -05:00
|
|
|
|
|
|
|
#endif
|