2006-06-05 15:41:08 +03:00
|
|
|
/*
|
2006-06-05 15:48:30 +03:00
|
|
|
* Copyright (c) 2006
|
|
|
|
* Bjorn Andersson <flex@kryo.se>,
|
|
|
|
* Erik Ekman <yarrick@kryo.se>
|
2006-06-05 15:41:08 +03:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TUN_H_
|
|
|
|
#define _TUN_H_
|
|
|
|
|
2006-06-05 15:48:30 +03:00
|
|
|
int open_tun();
|
2006-06-05 17:43:04 +03:00
|
|
|
void close_tun(int);
|
2006-06-11 16:49:36 +03:00
|
|
|
int write_tun(int, char *, int);
|
|
|
|
int read_tun(int, char *, int);
|
2006-06-11 18:07:51 +03:00
|
|
|
int tun_setip(const char *);
|
|
|
|
int tun_setmtu(const int);
|
2006-06-05 15:41:08 +03:00
|
|
|
|
|
|
|
#endif /* _TUN_H_ */
|