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