mirror of https://github.com/MelwareDE/ITunD
32 lines
924 B
C
32 lines
924 B
C
/*
|
|
* TUN/TAP driver interface functions
|
|
*
|
|
* Copyright 2004 SYSGO Real-Time Solutions AG
|
|
* Klein-Winternheim, Germany
|
|
* All rights reserved.
|
|
*
|
|
* Author: Armin Schindler <armin.schindler@sysgo.com>
|
|
*
|
|
* $Id$
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
#ifndef __TUN_H__
|
|
#define __TUN_H__
|
|
|
|
extern unsigned char dev_name[];
|
|
|
|
extern int itun_alloc(char *dev, int ether);
|
|
extern void itun_close(int fd);
|
|
|
|
#endif
|