ndhc/ifset.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

14 lines
450 B
C

// Copyright 2004-2018 Nicholas J. Kain <njkain at gmail dot com>
// SPDX-License-Identifier: MIT
#ifndef NJK_IFSET_H_
#define NJK_IFSET_H_
int perform_carrier(void);
int perform_ifup(void);
int perform_ip_subnet_bcast(const char *str_ipaddr,
const char *str_subnet,
const char *str_bcast);
int perform_router(const char *str, size_t len);
int perform_mtu(const char *str, size_t len);
#endif