1 /*
2  *  Hans - IP over ICMP
3  *  Copyright (C) 2009 Friedrich Schöller <hans@schoeller.se>
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19 
20 #include "tunemu.h"
21 
22 #include <syslog.h>
23 
tun_open(char * dev)24 int tun_open(char *dev)
25 {
26     return tunemu_open(dev);
27 }
28 
tun_close(int fd,char * dev)29 int tun_close(int fd, char *dev)
30 {
31     return tunemu_close(fd);
32 }
33 
tun_write(int fd,char * buf,int len)34 int tun_write(int fd, char *buf, int len)
35 {
36     return tunemu_write(fd, buf, len);
37 }
38 
tun_read(int fd,char * buf,int len)39 int tun_read(int fd, char *buf, int len)
40 {
41     return tunemu_read(fd, buf, len);
42 }
43 
tun_last_error()44 const char *tun_last_error()
45 {
46     return tunemu_error;
47 }
48