2022-02-06 20:05:29 -05:00
|
|
|
// Copyright 2004-2018 Nicholas J. Kain <njkain at gmail dot com>
|
|
|
|
// SPDX-License-Identifier: MIT
|
2014-03-10 00:52:56 -04:00
|
|
|
#ifndef NJK_IFSET_H_
|
|
|
|
#define NJK_IFSET_H_
|
2015-02-15 02:50:29 -05:00
|
|
|
int perform_carrier(void);
|
2014-03-17 22:10:58 -04:00
|
|
|
int perform_ifup(void);
|
2022-01-11 22:35:19 -05:00
|
|
|
int perform_ip_subnet_bcast(const char *str_ipaddr,
|
|
|
|
const char *str_subnet,
|
2015-02-15 02:29:37 -05:00
|
|
|
const char *str_bcast);
|
2022-01-11 22:35:19 -05:00
|
|
|
int perform_router(const char *str, size_t len);
|
2015-02-15 02:29:37 -05:00
|
|
|
int perform_mtu(const char *str, size_t len);
|
2010-11-12 04:02:18 -05:00
|
|
|
#endif
|
|
|
|
|