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