iodine/src/tun.h

29 lines
1.1 KiB
C
Raw Permalink Normal View History

2006-06-05 15:41:08 +03:00
/*
2014-06-01 09:46:42 +03:00
* Copyright (c) 2006-2014 Erik Ekman <yarrick@kryo.se>,
* 2006-2009 Bjorn Andersson <flex@kryo.se>
2006-06-05 15:41:08 +03:00
*
* Permission to use, copy, modify, and/or distribute this software for any
2006-06-05 15:41:08 +03:00
* 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-24 13:21:50 +03:00
int open_tun(const char *);
2006-06-05 17:43:04 +03:00
void close_tun(int);
int write_tun(int, char *, size_t);
ssize_t read_tun(int, char *, size_t);
int tun_setip(const char *, const char *, int);
2009-01-07 20:16:49 +02:00
int tun_setmtu(const unsigned);
2006-06-05 15:41:08 +03:00
#endif /* _TUN_H_ */