├── .gitignore ├── .travis.yml ├── ChanServ.py ├── Client.py ├── DataHandler.py ├── LICENSE ├── NATServer.py ├── README.md ├── SQLUsers.py ├── SayHooks.py ├── XmlRpcServer.py ├── certificate.py ├── dbconfig-example.py ├── docker ├── Dockerfile └── docker-compose.yml ├── ip2country.py ├── local_server.db ├── protocol ├── Battle.py ├── BridgedClient.py ├── Channel.py ├── Protocol.py └── __init__.py ├── requirements.txt ├── scripts └── build_exe.py ├── server.py ├── systemd ├── uberserver-dev.service ├── uberserver-xmlrpc.service └── uberserver.service ├── tests ├── TestLobbyClient.py ├── XmlRpcTestClient.py ├── checknicks.py ├── stresstest.py └── tlsclient.py ├── twistedserver.py └── www └── getip.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChanServ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/ChanServ.py -------------------------------------------------------------------------------- /Client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/Client.py -------------------------------------------------------------------------------- /DataHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/DataHandler.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/LICENSE -------------------------------------------------------------------------------- /NATServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/NATServer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/README.md -------------------------------------------------------------------------------- /SQLUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/SQLUsers.py -------------------------------------------------------------------------------- /SayHooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/SayHooks.py -------------------------------------------------------------------------------- /XmlRpcServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/XmlRpcServer.py -------------------------------------------------------------------------------- /certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/certificate.py -------------------------------------------------------------------------------- /dbconfig-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/dbconfig-example.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /ip2country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/ip2country.py -------------------------------------------------------------------------------- /local_server.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/local_server.db -------------------------------------------------------------------------------- /protocol/Battle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/protocol/Battle.py -------------------------------------------------------------------------------- /protocol/BridgedClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/protocol/BridgedClient.py -------------------------------------------------------------------------------- /protocol/Channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/protocol/Channel.py -------------------------------------------------------------------------------- /protocol/Protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/protocol/Protocol.py -------------------------------------------------------------------------------- /protocol/__init__.py: -------------------------------------------------------------------------------- 1 | import Battle, Channel, Protocol 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/scripts/build_exe.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/server.py -------------------------------------------------------------------------------- /systemd/uberserver-dev.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/systemd/uberserver-dev.service -------------------------------------------------------------------------------- /systemd/uberserver-xmlrpc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/systemd/uberserver-xmlrpc.service -------------------------------------------------------------------------------- /systemd/uberserver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/systemd/uberserver.service -------------------------------------------------------------------------------- /tests/TestLobbyClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/tests/TestLobbyClient.py -------------------------------------------------------------------------------- /tests/XmlRpcTestClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/tests/XmlRpcTestClient.py -------------------------------------------------------------------------------- /tests/checknicks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/tests/checknicks.py -------------------------------------------------------------------------------- /tests/stresstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/tests/stresstest.py -------------------------------------------------------------------------------- /tests/tlsclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/tests/tlsclient.py -------------------------------------------------------------------------------- /twistedserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring/uberserver/HEAD/twistedserver.py -------------------------------------------------------------------------------- /www/getip.php: -------------------------------------------------------------------------------- 1 |