├── .gitignore ├── .golangci.yml ├── LICENSE ├── README.md ├── client ├── config.go └── main.go ├── cmd ├── wbox │ ├── main.go │ └── wbox.example.toml └── wboxd │ ├── main.go │ └── wboxd.example.toml ├── const.go ├── go.mod ├── go.sum ├── ipv6ll.go ├── linkmgr ├── link.go └── rtnetlink_linux.go ├── proto ├── conversions.go ├── pack.go ├── protocol.pb.go ├── protocol.proto └── spec.md ├── server ├── config.go ├── link.go ├── main.go ├── peers.go └── solications.go └── wg.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/README.md -------------------------------------------------------------------------------- /client/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/client/config.go -------------------------------------------------------------------------------- /client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/client/main.go -------------------------------------------------------------------------------- /cmd/wbox/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/cmd/wbox/main.go -------------------------------------------------------------------------------- /cmd/wbox/wbox.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/cmd/wbox/wbox.example.toml -------------------------------------------------------------------------------- /cmd/wboxd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/cmd/wboxd/main.go -------------------------------------------------------------------------------- /cmd/wboxd/wboxd.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/cmd/wboxd/wboxd.example.toml -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/const.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/go.sum -------------------------------------------------------------------------------- /ipv6ll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/ipv6ll.go -------------------------------------------------------------------------------- /linkmgr/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/linkmgr/link.go -------------------------------------------------------------------------------- /linkmgr/rtnetlink_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/linkmgr/rtnetlink_linux.go -------------------------------------------------------------------------------- /proto/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/proto/conversions.go -------------------------------------------------------------------------------- /proto/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/proto/pack.go -------------------------------------------------------------------------------- /proto/protocol.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/proto/protocol.pb.go -------------------------------------------------------------------------------- /proto/protocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/proto/protocol.proto -------------------------------------------------------------------------------- /proto/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/proto/spec.md -------------------------------------------------------------------------------- /server/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/server/config.go -------------------------------------------------------------------------------- /server/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/server/link.go -------------------------------------------------------------------------------- /server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/server/main.go -------------------------------------------------------------------------------- /server/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/server/peers.go -------------------------------------------------------------------------------- /server/solications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/server/solications.go -------------------------------------------------------------------------------- /wg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxcpp/wirebox/HEAD/wg.go --------------------------------------------------------------------------------