├── .gitignore ├── ExampleVPN ├── IPSpaceManager │ └── ipSpaceHandler.go ├── README ├── main.go └── network.go ├── LICENSE ├── README.md ├── clienttest └── main.go ├── servertest └── main.go ├── tap.go ├── tapUtils.c └── tapUtils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/.gitignore -------------------------------------------------------------------------------- /ExampleVPN/IPSpaceManager/ipSpaceHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/ExampleVPN/IPSpaceManager/ipSpaceHandler.go -------------------------------------------------------------------------------- /ExampleVPN/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/ExampleVPN/README -------------------------------------------------------------------------------- /ExampleVPN/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/ExampleVPN/main.go -------------------------------------------------------------------------------- /ExampleVPN/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/ExampleVPN/network.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/README.md -------------------------------------------------------------------------------- /clienttest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/clienttest/main.go -------------------------------------------------------------------------------- /servertest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/servertest/main.go -------------------------------------------------------------------------------- /tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/tap.go -------------------------------------------------------------------------------- /tapUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/tapUtils.c -------------------------------------------------------------------------------- /tapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traetox/goTunTap/HEAD/tapUtils.h --------------------------------------------------------------------------------