├── .gitignore ├── Makefile ├── README.md ├── bufsize.h ├── create_tun_device.h ├── tun2fifo.c └── tun2udp.c /.gitignore: -------------------------------------------------------------------------------- 1 | tun2fifo 2 | tun2udp 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TOGoS/TUN2UDP/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TOGoS/TUN2UDP/HEAD/README.md -------------------------------------------------------------------------------- /bufsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TOGoS/TUN2UDP/HEAD/bufsize.h -------------------------------------------------------------------------------- /create_tun_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TOGoS/TUN2UDP/HEAD/create_tun_device.h -------------------------------------------------------------------------------- /tun2fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TOGoS/TUN2UDP/HEAD/tun2fifo.c -------------------------------------------------------------------------------- /tun2udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TOGoS/TUN2UDP/HEAD/tun2udp.c --------------------------------------------------------------------------------