Import vtun.drivers, add an autogen.sh script to create autoconf files
This commit is contained in:
parent
59e5f82dc7
commit
10328691e5
21
.gitignore
vendored
Normal file
21
.gitignore
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
*.o
|
||||
*~
|
||||
Makefile
|
||||
autom4te.cache
|
||||
cfg_file.lex.c
|
||||
cfg_file.tab.c
|
||||
cfg_file.tab.h
|
||||
config.guess
|
||||
config.h
|
||||
config.h.in
|
||||
config.log
|
||||
config.status
|
||||
config.sub
|
||||
configure
|
||||
install-sh
|
||||
pipe_dev.c
|
||||
pty_dev.c
|
||||
tap_dev.c
|
||||
tcp_proto.c
|
||||
tun_dev.c
|
||||
udp_proto.c
|
6
autogen.sh
Executable file
6
autogen.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
aclocal && \
|
||||
autoheader && \
|
||||
autoconf && \
|
||||
automake --add-missing 2> /dev/null
|
76
config.h.in
76
config.h.in
@ -1,76 +0,0 @@
|
||||
/* config.h.in. Generated automatically from configure.in by autoheader. */
|
||||
|
||||
/* Define to empty if the keyword does not work. */
|
||||
#undef const
|
||||
|
||||
/* Define as __inline if that's what the C compiler calls it. */
|
||||
#undef inline
|
||||
|
||||
/* Define if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Define if you have the gettimeofday function. */
|
||||
#undef HAVE_GETTIMEOFDAY
|
||||
|
||||
/* Define if you have the <arpa/inet.h> header file. */
|
||||
#undef HAVE_ARPA_INET_H
|
||||
|
||||
/* Define if you have the <fcntl.h> header file. */
|
||||
#undef HAVE_FCNTL_H
|
||||
|
||||
/* Define if you have the <netinet/in.h> header file. */
|
||||
#undef HAVE_NETINET_IN_H
|
||||
|
||||
/* Define if you have the <netinet/ip.h> header file. */
|
||||
#undef HAVE_NETINET_IP_H
|
||||
|
||||
/* Define if you have the <netinet/tcp.h> header file. */
|
||||
#undef HAVE_NETINET_TCP_H
|
||||
|
||||
/* Define if you have the <netinet/in_systm.h> header file. */
|
||||
#undef HAVE_NETINET_IN_SYSTM_H
|
||||
|
||||
/* Define if you have the <netdb.h> header file. */
|
||||
#undef HAVE_NETDB_H
|
||||
|
||||
/* Define if you have the <sched.h> header file. */
|
||||
#undef HAVE_SCHED_H
|
||||
|
||||
/* Define if you have the <sys/resource.h> header file. */
|
||||
#undef HAVE_SYS_RESOURCE_H
|
||||
|
||||
/* Define if you have the <sys/time.h> header file. */
|
||||
#undef HAVE_SYS_TIME_H
|
||||
|
||||
/* Define if you have the <sys/sockio.h> header file. */
|
||||
#undef HAVE_SYS_SOCKIO_H
|
||||
|
||||
/* Define if you have the <linux/if_tun.h> header file. */
|
||||
#undef HAVE_LINUX_IF_TUN_H
|
||||
|
||||
/* Define if you have setproctitle. */
|
||||
#undef HAVE_SETPROC_TITLE
|
||||
|
||||
#undef HAVE_LIBUTIL_H
|
||||
|
||||
/* Define if you have ZLIB */
|
||||
#undef HAVE_ZLIB
|
||||
|
||||
/* Define if you have LZO */
|
||||
#undef HAVE_LZO
|
||||
|
||||
/* Define if you have OpenSSL */
|
||||
#undef HAVE_SSL
|
||||
|
||||
#undef HAVE_SSL_BLOWFISH
|
||||
|
||||
#undef HAVE_SSL_AES
|
||||
|
||||
#undef HAVE_SSL_EVP
|
||||
|
||||
#undef HAVE_SHAPER
|
||||
|
||||
#undef ENABLE_NAT_HACK
|
||||
|
||||
/* Release version and date */
|
||||
#undef VTUN_VER
|
6
vtun.drivers
Normal file
6
vtun.drivers
Normal file
@ -0,0 +1,6 @@
|
||||
tun_dev.c
|
||||
tap_dev.c
|
||||
pty_dev.c
|
||||
pipe_dev.c
|
||||
tcp_proto.c
|
||||
udp_proto.c
|
Loading…
Reference in New Issue
Block a user