umka/vnet/null.h
Ivan Baravy e71791c0ab Implement vnet_null device
Such device don't need new threads and files but are valid ethernet
devices for the kernel. Convenient for testing.
2023-02-07 04:32:32 +00:00

17 lines
335 B
C

/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
vnet - virtual network card, null interface
Copyright (C) 2023 Ivan Baravy <dunkaist@gmail.com>
*/
#ifndef VNET_NULL_H_INCLUDED
#define VNET_NULL_H_INCLUDED
struct vnet *
vnet_init_null(void);
#endif // VNET_NULL_H_INCLUDED