├── .gitignore ├── LICENSE ├── README.md ├── authclient.go ├── client.go ├── cmd.go ├── irc.go ├── listener.go ├── server.go └── xbnc.go /.gitignore: -------------------------------------------------------------------------------- 1 | /xbnc 2 | /users/ 3 | config.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | xbnc 2 | ==== 3 | 4 | xthexder's BNC - Custom IRC bouncer written in golang. 5 | -------------------------------------------------------------------------------- /authclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/authclient.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/client.go -------------------------------------------------------------------------------- /cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/cmd.go -------------------------------------------------------------------------------- /irc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/irc.go -------------------------------------------------------------------------------- /listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/listener.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/server.go -------------------------------------------------------------------------------- /xbnc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthexder/xbnc/HEAD/xbnc.go --------------------------------------------------------------------------------