├── .env-local ├── .github └── workflows │ └── build-and-push.yml ├── .gitignore ├── DESIGN.md ├── Dockerfile ├── README.md ├── cmake └── modules │ ├── FindSSL.cmake │ ├── Findhiredis.cmake │ ├── Findhiredis_ssl.cmake │ ├── Findjansson.cmake │ └── Findlibuv.cmake ├── code ├── CMakeLists.txt ├── FESL │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ └── server │ │ ├── FESLDriver.cpp │ │ ├── FESLDriver.h │ │ ├── FESLPeer.cpp │ │ ├── FESLPeer.h │ │ ├── FESLServer.cpp │ │ ├── FESLServer.h │ │ ├── commands │ │ ├── basic │ │ │ ├── handle_add_account.cpp │ │ │ ├── handle_add_sub_account.cpp │ │ │ ├── handle_disable_sub_account.cpp │ │ │ ├── handle_gamespy_preauth.cpp │ │ │ ├── handle_get_account.cpp │ │ │ ├── handle_get_country_list.cpp │ │ │ ├── handle_get_entitlement_by_bundle.cpp │ │ │ ├── handle_get_object_inventory.cpp │ │ │ ├── handle_get_subaccounts.cpp │ │ │ ├── handle_get_telemetry_token.cpp │ │ │ ├── handle_get_tos.cpp │ │ │ ├── handle_goodbye.cpp │ │ │ ├── handle_hello.cpp │ │ │ ├── handle_login.cpp │ │ │ ├── handle_login_sub_account.cpp │ │ │ ├── handle_memcheck.cpp │ │ │ ├── handle_ping.cpp │ │ │ ├── handle_register_game.cpp │ │ │ ├── handle_send_accountname.cpp │ │ │ ├── handle_send_password.cpp │ │ │ └── handle_update_account.cpp │ │ └── nu │ │ │ ├── handle_add_persona.cpp │ │ │ ├── handle_get_personas.cpp │ │ │ ├── handle_login.cpp │ │ │ └── handle_login_persona.cpp │ │ └── tasks │ │ ├── Perform_GetEntitledGameFeatures.cpp │ │ ├── Perform_GetObjectInventory.cpp │ │ ├── tasks.cpp │ │ └── tasks.h ├── GP │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ ├── server │ │ ├── GPDriver.cpp │ │ ├── GPDriver.h │ │ ├── GPPeer.cpp │ │ ├── GPPeer.h │ │ ├── GPServer.cpp │ │ ├── GPServer.h │ │ ├── ListHandler.cpp │ │ └── commands │ │ │ ├── handle_addblock.cpp │ │ │ ├── handle_addbuddy.cpp │ │ │ ├── handle_authadd.cpp │ │ │ ├── handle_bm.cpp │ │ │ ├── handle_delbuddy.cpp │ │ │ ├── handle_delprofile.cpp │ │ │ ├── handle_getprofile.cpp │ │ │ ├── handle_login.cpp │ │ │ ├── handle_newprofile.cpp │ │ │ ├── handle_newuser.cpp │ │ │ ├── handle_pinvite.cpp │ │ │ ├── handle_registercdkey.cpp │ │ │ ├── handle_registernick.cpp │ │ │ ├── handle_removeblock.cpp │ │ │ ├── handle_revoke.cpp │ │ │ ├── handle_status.cpp │ │ │ ├── handle_updatepro.cpp │ │ │ └── handle_updateui.cpp │ └── tasks │ │ ├── Auth_LoginTicket_GPHash.cpp │ │ ├── Auth_NickEMail_GPHash.cpp │ │ ├── Auth_PreAuth_Token_GPHash.cpp │ │ ├── Auth_Uniquenick_GPHash.cpp │ │ ├── BuddyRequest.cpp │ │ ├── PresenceMessageListener.cpp │ │ ├── SendBuddyMessage.cpp │ │ ├── SendGPBuddyStatus.cpp │ │ ├── SendLoginEvent.cpp │ │ ├── SetPresenceStatus.cpp │ │ ├── ToFromProfileAction.cpp │ │ ├── tasks.cpp │ │ └── tasks.h ├── SharedTasks │ ├── CMakeLists.txt │ └── src │ │ └── OS │ │ ├── Date.cpp │ │ ├── Date.h │ │ ├── GPShared.cpp │ │ ├── GPShared.h │ │ ├── Profile.cpp │ │ ├── Profile.h │ │ ├── SharedTasks │ │ ├── Account │ │ │ ├── AccountTasks.cpp │ │ │ ├── ProfileTasks.h │ │ │ ├── UserRegister.cpp │ │ │ ├── UserTasks.h │ │ │ └── tasks │ │ │ │ ├── BuddyLookup.cpp │ │ │ │ ├── UserSearch.cpp │ │ │ │ └── UserUpdate.cpp │ │ ├── Auth │ │ │ ├── AuthTasks.cpp │ │ │ ├── AuthTasks.h │ │ │ └── tasks │ │ │ │ ├── Auth_DeleteAuthSession.cpp │ │ │ │ ├── Auth_EmailPassword.cpp │ │ │ │ ├── Auth_MakeAuthSession.cpp │ │ │ │ ├── Auth_MakeAuthTicket.cpp │ │ │ │ ├── Auth_NickEmail.cpp │ │ │ │ ├── Auth_TestPreAuth.cpp │ │ │ │ └── Auth_UniqueNick_Password.cpp │ │ ├── CDKey │ │ │ ├── CDKeyTasks.cpp │ │ │ ├── CDKeyTasks.h │ │ │ └── tasks │ │ │ │ ├── CDKey_AssociateToProfile.cpp │ │ │ │ ├── CDKey_GetProfileByCDKey.cpp │ │ │ │ └── CDKey_TestCDKeyValid.cpp │ │ └── Geo │ │ │ ├── GeographyTasks.cpp │ │ │ ├── GeographyTasks.h │ │ │ └── tasks │ │ │ └── GetCountries.cpp │ │ ├── User.cpp │ │ ├── User.h │ │ ├── WebError.h │ │ ├── tasks.cpp │ │ └── tasks.h ├── cdkey │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ └── server │ │ ├── CDKeyDriver.cpp │ │ ├── CDKeyDriver.h │ │ ├── CDKeyServer.cpp │ │ ├── CDKeyServer.h │ │ └── handlers │ │ └── handle_auth.cpp ├── core │ ├── CMakeLists.txt │ ├── OS │ │ ├── Address.cpp │ │ ├── Buffer.cpp │ │ ├── Buffer.h │ │ ├── Config │ │ │ ├── Config.cpp │ │ │ └── Config.h │ │ ├── HTTP.cpp │ │ ├── HTTP.h │ │ ├── KVReader.cpp │ │ ├── KVReader.h │ │ ├── LinkedList.h │ │ ├── Logger.h │ │ ├── Logger │ │ │ ├── Unix │ │ │ │ ├── UnixLogger.cpp │ │ │ │ └── UnixLogger.h │ │ │ └── Win32 │ │ │ │ ├── Win32Logger.cpp │ │ │ │ └── Win32Logger.h │ │ ├── Net │ │ │ ├── NetDriver.cpp │ │ │ ├── NetDriver.h │ │ │ ├── NetPeer.cpp │ │ │ ├── NetPeer.h │ │ │ ├── NetProcessor.h │ │ │ ├── NetServer.cpp │ │ │ ├── NetServer.h │ │ │ ├── Processors │ │ │ │ ├── KVProcessor.cpp │ │ │ │ └── KVProcessor.h │ │ │ └── drivers │ │ │ │ ├── TCPDriver.cpp │ │ │ │ ├── TCPDriver.h │ │ │ │ ├── UDPDriver.cpp │ │ │ │ └── UDPDriver.h │ │ ├── OpenSpy.cpp │ │ ├── OpenSpy.h │ │ ├── Ref.h │ │ ├── gamespy │ │ │ ├── gamespy.cpp │ │ │ ├── gamespy.h │ │ │ ├── gsmsalg.cpp │ │ │ └── gsmsalg.h │ │ └── test │ │ │ ├── TestNetIOInterface.cpp │ │ │ └── TestNetIOInterface.h │ ├── SSL │ │ └── OpenSSL │ │ │ └── SSL │ │ │ ├── Base64.cpp │ │ │ ├── SSLPeer.cpp │ │ │ ├── SSLPeer.h │ │ │ ├── SSLTCPDriver.cpp │ │ │ ├── SSLTCPDriver.h │ │ │ ├── StringCrypter.cpp │ │ │ └── StringCrypter.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── OS │ │ └── test_buffer.cpp │ │ └── common.h ├── gamestats │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ └── server │ │ ├── GSDriver.cpp │ │ ├── GSDriver.h │ │ ├── GSPeer.cpp │ │ ├── GSPeer.h │ │ ├── GSServer.cpp │ │ ├── GSServer.h │ │ ├── commands │ │ ├── handle_auth.cpp │ │ ├── handle_authp.cpp │ │ ├── handle_getpd.cpp │ │ ├── handle_getpid.cpp │ │ ├── handle_newgame.cpp │ │ ├── handle_setpd.cpp │ │ └── handle_updgame.cpp │ │ └── tasks │ │ ├── CDKeyAuth.cpp │ │ ├── GetGameInfo.cpp │ │ ├── GetProfileIDFromCD.cpp │ │ ├── GetUserData.cpp │ │ ├── GetUserKeyedData.cpp │ │ ├── NewGame.cpp │ │ ├── PreAuth.cpp │ │ ├── ProfileIDAuth.cpp │ │ ├── SetUserData.cpp │ │ ├── UpdateGame.cpp │ │ ├── tasks.cpp │ │ └── tasks.h ├── natneg │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ ├── server │ │ ├── NATMapper.cpp │ │ ├── NATMapper.h │ │ ├── NNDriver.cpp │ │ ├── NNDriver.h │ │ ├── NNServer.cpp │ │ ├── NNServer.h │ │ ├── handlers │ │ │ ├── handle_address_check.cpp │ │ │ ├── handle_connect_ack.cpp │ │ │ ├── handle_ert_ack.cpp │ │ │ ├── handle_init.cpp │ │ │ ├── handle_natify_request.cpp │ │ │ ├── handle_preinit.cpp │ │ │ └── handle_report.cpp │ │ └── structs.h │ └── tasks │ │ ├── SendMsgMessage.cpp │ │ ├── SubmitJson.cpp │ │ ├── tasks.cpp │ │ └── tasks.h ├── peerchat │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ ├── match.cpp │ ├── server │ │ ├── Driver.cpp │ │ ├── Driver.h │ │ ├── Peer.cpp │ │ ├── Peer.h │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── commands │ │ │ ├── handle_cdkey.cpp │ │ │ ├── handle_crypt.cpp │ │ │ ├── handle_delchanprops.cpp │ │ │ ├── handle_delusermode.cpp │ │ │ ├── handle_getchankey.cpp │ │ │ ├── handle_getckey.cpp │ │ │ ├── handle_getkey.cpp │ │ │ ├── handle_join.cpp │ │ │ ├── handle_kick.cpp │ │ │ ├── handle_kill.cpp │ │ │ ├── handle_list.cpp │ │ │ ├── handle_listchanprops.cpp │ │ │ ├── handle_listusermodes.cpp │ │ │ ├── handle_login.cpp │ │ │ ├── handle_lusers.cpp │ │ │ ├── handle_mode.cpp │ │ │ ├── handle_names.cpp │ │ │ ├── handle_nick.cpp │ │ │ ├── handle_oper.cpp │ │ │ ├── handle_part.cpp │ │ │ ├── handle_ping.cpp │ │ │ ├── handle_privmsg.cpp │ │ │ ├── handle_quit.cpp │ │ │ ├── handle_registernick.cpp │ │ │ ├── handle_setchankey.cpp │ │ │ ├── handle_setchanprops.cpp │ │ │ ├── handle_setckey.cpp │ │ │ ├── handle_setgroup.cpp │ │ │ ├── handle_setkey.cpp │ │ │ ├── handle_setusermode.cpp │ │ │ ├── handle_topic.cpp │ │ │ ├── handle_user.cpp │ │ │ ├── handle_userhost.cpp │ │ │ ├── handle_who.cpp │ │ │ └── handle_whois.cpp │ │ ├── gs_peerchat.cpp │ │ ├── gs_peerchat.h │ │ ├── irc_common.cpp │ │ └── irc_common.h │ └── tasks │ │ ├── Channel.cpp │ │ ├── Chanprops.cpp │ │ ├── Perform_CountServerUsers.cpp │ │ ├── Perform_DelChanProps.cpp │ │ ├── Perform_DeleteUser.cpp │ │ ├── Perform_DeleteUsermode.cpp │ │ ├── Perform_GetChannelKeys.cpp │ │ ├── Perform_GetChannelUserKeys.cpp │ │ ├── Perform_GetUserKeys.cpp │ │ ├── Perform_KeepaliveUser.cpp │ │ ├── Perform_ListChanProps.cpp │ │ ├── Perform_ListChannels.cpp │ │ ├── Perform_ListUsermodes.cpp │ │ ├── Perform_LookupChannelDetails.cpp │ │ ├── Perform_LookupGameInfo.cpp │ │ ├── Perform_LookupGlobalUsermode.cpp │ │ ├── Perform_LookupUserDetails.cpp │ │ ├── Perform_OperCheck.cpp │ │ ├── Perform_RemoteKill_ByName.cpp │ │ ├── Perform_SendMessageToTarget.cpp │ │ ├── Perform_SetBroadcastToVisibleUsers.cpp │ │ ├── Perform_SetChanProps.cpp │ │ ├── Perform_SetChannelKeys.cpp │ │ ├── Perform_SetChannelUserKeys.cpp │ │ ├── Perform_SetUserDetails.cpp │ │ ├── Perform_SetUserKeys.cpp │ │ ├── Perform_Setusermode.cpp │ │ ├── Perform_UpdateChannelModes.cpp │ │ ├── Perform_UpdateChannelModes_BanMask.cpp │ │ ├── Perform_UpdateUserModes.cpp │ │ ├── Perform_UserJoinChannel.cpp │ │ ├── Perform_UserJoinEvents.cpp │ │ ├── Perform_UserKickChannel.cpp │ │ ├── Perform_UserPartChannel.cpp │ │ ├── User.cpp │ │ ├── Usermode.cpp │ │ ├── tasks.cpp │ │ └── tasks.h ├── qr │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ ├── server │ │ ├── QRDriver.cpp │ │ ├── QRDriver.h │ │ ├── QRServer.cpp │ │ ├── QRServer.h │ │ ├── V1Handler.cpp │ │ ├── V2Handler.cpp │ │ ├── v1 │ │ │ ├── handle_echo.cpp │ │ │ ├── handle_heartbeat.cpp │ │ │ ├── handle_validate.cpp │ │ │ └── scan.cpp │ │ ├── v2.h │ │ └── v2 │ │ │ ├── handle_available.cpp │ │ │ ├── handle_challenge.cpp │ │ │ ├── handle_client_message_ack.cpp │ │ │ ├── handle_heartbeat.cpp │ │ │ └── handle_keepalive.cpp │ └── tasks │ │ ├── ClientMessageAck.cpp │ │ ├── GetGameInfo.cpp │ │ ├── Handle_QRMessage.cpp │ │ ├── Heartbeat.cpp │ │ ├── Keepalive.cpp │ │ ├── ValidateServer.cpp │ │ ├── shared.cpp │ │ ├── tasks.cpp │ │ └── tasks.h ├── search │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ └── server │ │ ├── SMDriver.cpp │ │ ├── SMDriver.h │ │ ├── SMPeer.cpp │ │ ├── SMPeer.h │ │ ├── SMServer.cpp │ │ ├── SMServer.h │ │ └── commands │ │ ├── handle_check.cpp │ │ ├── handle_newuser.cpp │ │ ├── handle_nicks.cpp │ │ ├── handle_others.cpp │ │ ├── handle_otherslist.cpp │ │ ├── handle_pmatch.cpp │ │ ├── handle_profilelist.cpp │ │ ├── handle_search.cpp │ │ ├── handle_searchunique.cpp │ │ ├── handle_uniquesearch.cpp │ │ └── handle_valid.cpp ├── serverbrowsing │ ├── CMakeLists.txt │ ├── filter │ │ ├── CToken.cpp │ │ ├── CToken.h │ │ ├── filter.cpp │ │ └── filter.h │ ├── main.cpp │ ├── main.h │ ├── server │ │ ├── SBDriver.cpp │ │ ├── SBDriver.h │ │ ├── SBPeer.cpp │ │ ├── SBPeer.h │ │ ├── SBServer.cpp │ │ ├── SBServer.h │ │ ├── V1Peer.cpp │ │ ├── V1Peer.h │ │ ├── V2Peer.cpp │ │ ├── V2Peer.h │ │ ├── enctype1_decoder.cpp │ │ ├── enctype1_encoder.cpp │ │ ├── enctype1_helper.cpp │ │ ├── enctype1_helper.h │ │ ├── enctype_shared.cpp │ │ ├── gutil.cpp │ │ ├── gutil.h │ │ ├── sb_crypt.cpp │ │ └── sb_crypt.h │ ├── tasks │ │ ├── GetGameInfoByGameName.cpp │ │ ├── GetGameInfoPairByGameName.cpp │ │ ├── GetGroups.cpp │ │ ├── GetServerByIP.cpp │ │ ├── GetServerByKey.cpp │ │ ├── GetServers.cpp │ │ ├── HandleServerEventMsg.cpp │ │ ├── SubmitData.cpp │ │ ├── tasks.cpp │ │ └── tasks.h │ └── test │ │ ├── CMakeLists.txt │ │ └── filter │ │ ├── CMakeLists.txt │ │ ├── filter_basic_test.cpp │ │ ├── filter_like_test.cpp │ │ └── filter_subtract_test.cpp ├── test │ ├── CMakeLists.txt │ └── serverbrowsing │ │ ├── CMakeLists.txt │ │ ├── V1 │ │ ├── CMakeLists.txt │ │ ├── common.h │ │ ├── test_common.cpp │ │ └── test_groups.cpp │ │ ├── V2 │ │ ├── CMakeLists.txt │ │ ├── common.h │ │ ├── test_common.cpp │ │ ├── test_groups.cpp │ │ ├── test_main.cpp │ │ └── test_server_message.cpp │ │ └── filter │ │ ├── CMakeLists.txt │ │ └── test_filter.cpp └── utmaster │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.h │ ├── server │ ├── UTDriver.cpp │ ├── UTDriver.h │ ├── UTPeer.cpp │ ├── UTPeer.h │ ├── UTServer.cpp │ ├── UTServer.h │ └── commands │ │ ├── handle_challenge.cpp │ │ ├── handle_community_data.cpp │ │ ├── handle_heartbeat.cpp │ │ ├── handle_motd.cpp │ │ ├── handle_packages_version.cpp │ │ ├── handle_serverlist.cpp │ │ ├── handle_stats_update.cpp │ │ └── handle_uplink_info.cpp │ └── tasks │ ├── PerformDeleteServer.cpp │ ├── PerformHeartbeat.cpp │ ├── PerformInternalLoadGameData.cpp │ ├── PerformListServers.cpp │ ├── tasks.cpp │ └── tasks.h ├── docker-compose.yaml ├── docker-support ├── fesl_tos.txt ├── motd-community.txt ├── motd.txt ├── password_key.pem ├── rsa_priv.pem ├── run.sh ├── utmaster.xml └── x509.pem ├── vcpkg-configuration.json └── vcpkg.json /.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/.env-local -------------------------------------------------------------------------------- /.github/workflows/build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/.github/workflows/build-and-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/DESIGN.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/FindSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/cmake/modules/FindSSL.cmake -------------------------------------------------------------------------------- /cmake/modules/Findhiredis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/cmake/modules/Findhiredis.cmake -------------------------------------------------------------------------------- /cmake/modules/Findhiredis_ssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/cmake/modules/Findhiredis_ssl.cmake -------------------------------------------------------------------------------- /cmake/modules/Findjansson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/cmake/modules/Findjansson.cmake -------------------------------------------------------------------------------- /cmake/modules/Findlibuv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/cmake/modules/Findlibuv.cmake -------------------------------------------------------------------------------- /code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/CMakeLists.txt -------------------------------------------------------------------------------- /code/FESL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/CMakeLists.txt -------------------------------------------------------------------------------- /code/FESL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/main.cpp -------------------------------------------------------------------------------- /code/FESL/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/main.h -------------------------------------------------------------------------------- /code/FESL/server/FESLDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/FESLDriver.cpp -------------------------------------------------------------------------------- /code/FESL/server/FESLDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/FESLDriver.h -------------------------------------------------------------------------------- /code/FESL/server/FESLPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/FESLPeer.cpp -------------------------------------------------------------------------------- /code/FESL/server/FESLPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/FESLPeer.h -------------------------------------------------------------------------------- /code/FESL/server/FESLServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/FESLServer.cpp -------------------------------------------------------------------------------- /code/FESL/server/FESLServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/FESLServer.h -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_add_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_add_account.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_add_sub_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_add_sub_account.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_disable_sub_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_disable_sub_account.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_gamespy_preauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_gamespy_preauth.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_account.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_country_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_country_list.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_entitlement_by_bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_entitlement_by_bundle.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_object_inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_object_inventory.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_subaccounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_subaccounts.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_telemetry_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_telemetry_token.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_get_tos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_get_tos.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_goodbye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_goodbye.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_hello.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_login.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_login_sub_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_login_sub_account.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_memcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_memcheck.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_ping.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_register_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_register_game.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_send_accountname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_send_accountname.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_send_password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_send_password.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/basic/handle_update_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/basic/handle_update_account.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/nu/handle_add_persona.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/nu/handle_add_persona.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/nu/handle_get_personas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/nu/handle_get_personas.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/nu/handle_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/nu/handle_login.cpp -------------------------------------------------------------------------------- /code/FESL/server/commands/nu/handle_login_persona.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/commands/nu/handle_login_persona.cpp -------------------------------------------------------------------------------- /code/FESL/server/tasks/Perform_GetEntitledGameFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/tasks/Perform_GetEntitledGameFeatures.cpp -------------------------------------------------------------------------------- /code/FESL/server/tasks/Perform_GetObjectInventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/tasks/Perform_GetObjectInventory.cpp -------------------------------------------------------------------------------- /code/FESL/server/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/FESL/server/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/FESL/server/tasks/tasks.h -------------------------------------------------------------------------------- /code/GP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/CMakeLists.txt -------------------------------------------------------------------------------- /code/GP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/main.cpp -------------------------------------------------------------------------------- /code/GP/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/main.h -------------------------------------------------------------------------------- /code/GP/server/GPDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/GPDriver.cpp -------------------------------------------------------------------------------- /code/GP/server/GPDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/GPDriver.h -------------------------------------------------------------------------------- /code/GP/server/GPPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/GPPeer.cpp -------------------------------------------------------------------------------- /code/GP/server/GPPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/GPPeer.h -------------------------------------------------------------------------------- /code/GP/server/GPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/GPServer.cpp -------------------------------------------------------------------------------- /code/GP/server/GPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/GPServer.h -------------------------------------------------------------------------------- /code/GP/server/ListHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/ListHandler.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_addblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_addblock.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_addbuddy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_addbuddy.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_authadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_authadd.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_bm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_bm.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_delbuddy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_delbuddy.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_delprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_delprofile.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_getprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_getprofile.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_login.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_newprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_newprofile.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_newuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_newuser.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_pinvite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_pinvite.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_registercdkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_registercdkey.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_registernick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_registernick.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_removeblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_removeblock.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_revoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_revoke.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_status.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_updatepro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_updatepro.cpp -------------------------------------------------------------------------------- /code/GP/server/commands/handle_updateui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/server/commands/handle_updateui.cpp -------------------------------------------------------------------------------- /code/GP/tasks/Auth_LoginTicket_GPHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/Auth_LoginTicket_GPHash.cpp -------------------------------------------------------------------------------- /code/GP/tasks/Auth_NickEMail_GPHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/Auth_NickEMail_GPHash.cpp -------------------------------------------------------------------------------- /code/GP/tasks/Auth_PreAuth_Token_GPHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/Auth_PreAuth_Token_GPHash.cpp -------------------------------------------------------------------------------- /code/GP/tasks/Auth_Uniquenick_GPHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/Auth_Uniquenick_GPHash.cpp -------------------------------------------------------------------------------- /code/GP/tasks/BuddyRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/BuddyRequest.cpp -------------------------------------------------------------------------------- /code/GP/tasks/PresenceMessageListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/PresenceMessageListener.cpp -------------------------------------------------------------------------------- /code/GP/tasks/SendBuddyMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/SendBuddyMessage.cpp -------------------------------------------------------------------------------- /code/GP/tasks/SendGPBuddyStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/SendGPBuddyStatus.cpp -------------------------------------------------------------------------------- /code/GP/tasks/SendLoginEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/SendLoginEvent.cpp -------------------------------------------------------------------------------- /code/GP/tasks/SetPresenceStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/SetPresenceStatus.cpp -------------------------------------------------------------------------------- /code/GP/tasks/ToFromProfileAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/ToFromProfileAction.cpp -------------------------------------------------------------------------------- /code/GP/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/GP/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/GP/tasks/tasks.h -------------------------------------------------------------------------------- /code/SharedTasks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/CMakeLists.txt -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/Date.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/Date.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/GPShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/GPShared.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/GPShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/GPShared.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/Profile.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/Profile.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/AccountTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/AccountTasks.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/ProfileTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/ProfileTasks.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/UserRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/UserRegister.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/UserTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/UserTasks.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/tasks/BuddyLookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/tasks/BuddyLookup.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/tasks/UserSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/tasks/UserSearch.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Account/tasks/UserUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Account/tasks/UserUpdate.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/AuthTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/AuthTasks.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/AuthTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/AuthTasks.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_DeleteAuthSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_DeleteAuthSession.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_EmailPassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_EmailPassword.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_MakeAuthSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_MakeAuthSession.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_MakeAuthTicket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_MakeAuthTicket.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_NickEmail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_NickEmail.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_TestPreAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_TestPreAuth.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_UniqueNick_Password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Auth/tasks/Auth_UniqueNick_Password.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/CDKey/CDKeyTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/CDKey/CDKeyTasks.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/CDKey/CDKeyTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/CDKey/CDKeyTasks.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/CDKey/tasks/CDKey_AssociateToProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/CDKey/tasks/CDKey_AssociateToProfile.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/CDKey/tasks/CDKey_GetProfileByCDKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/CDKey/tasks/CDKey_GetProfileByCDKey.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/CDKey/tasks/CDKey_TestCDKeyValid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/CDKey/tasks/CDKey_TestCDKeyValid.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Geo/GeographyTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Geo/GeographyTasks.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Geo/GeographyTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Geo/GeographyTasks.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/SharedTasks/Geo/tasks/GetCountries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/SharedTasks/Geo/tasks/GetCountries.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/User.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/User.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/WebError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/WebError.h -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/tasks.cpp -------------------------------------------------------------------------------- /code/SharedTasks/src/OS/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/SharedTasks/src/OS/tasks.h -------------------------------------------------------------------------------- /code/cdkey/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/CMakeLists.txt -------------------------------------------------------------------------------- /code/cdkey/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/main.cpp -------------------------------------------------------------------------------- /code/cdkey/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/main.h -------------------------------------------------------------------------------- /code/cdkey/server/CDKeyDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/server/CDKeyDriver.cpp -------------------------------------------------------------------------------- /code/cdkey/server/CDKeyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/server/CDKeyDriver.h -------------------------------------------------------------------------------- /code/cdkey/server/CDKeyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/server/CDKeyServer.cpp -------------------------------------------------------------------------------- /code/cdkey/server/CDKeyServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/server/CDKeyServer.h -------------------------------------------------------------------------------- /code/cdkey/server/handlers/handle_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/cdkey/server/handlers/handle_auth.cpp -------------------------------------------------------------------------------- /code/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/CMakeLists.txt -------------------------------------------------------------------------------- /code/core/OS/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Address.cpp -------------------------------------------------------------------------------- /code/core/OS/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Buffer.cpp -------------------------------------------------------------------------------- /code/core/OS/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Buffer.h -------------------------------------------------------------------------------- /code/core/OS/Config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Config/Config.cpp -------------------------------------------------------------------------------- /code/core/OS/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Config/Config.h -------------------------------------------------------------------------------- /code/core/OS/HTTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/HTTP.cpp -------------------------------------------------------------------------------- /code/core/OS/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/HTTP.h -------------------------------------------------------------------------------- /code/core/OS/KVReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/KVReader.cpp -------------------------------------------------------------------------------- /code/core/OS/KVReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/KVReader.h -------------------------------------------------------------------------------- /code/core/OS/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/LinkedList.h -------------------------------------------------------------------------------- /code/core/OS/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Logger.h -------------------------------------------------------------------------------- /code/core/OS/Logger/Unix/UnixLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Logger/Unix/UnixLogger.cpp -------------------------------------------------------------------------------- /code/core/OS/Logger/Unix/UnixLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Logger/Unix/UnixLogger.h -------------------------------------------------------------------------------- /code/core/OS/Logger/Win32/Win32Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Logger/Win32/Win32Logger.cpp -------------------------------------------------------------------------------- /code/core/OS/Logger/Win32/Win32Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Logger/Win32/Win32Logger.h -------------------------------------------------------------------------------- /code/core/OS/Net/NetDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetDriver.cpp -------------------------------------------------------------------------------- /code/core/OS/Net/NetDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetDriver.h -------------------------------------------------------------------------------- /code/core/OS/Net/NetPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetPeer.cpp -------------------------------------------------------------------------------- /code/core/OS/Net/NetPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetPeer.h -------------------------------------------------------------------------------- /code/core/OS/Net/NetProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetProcessor.h -------------------------------------------------------------------------------- /code/core/OS/Net/NetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetServer.cpp -------------------------------------------------------------------------------- /code/core/OS/Net/NetServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/NetServer.h -------------------------------------------------------------------------------- /code/core/OS/Net/Processors/KVProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/Processors/KVProcessor.cpp -------------------------------------------------------------------------------- /code/core/OS/Net/Processors/KVProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/Processors/KVProcessor.h -------------------------------------------------------------------------------- /code/core/OS/Net/drivers/TCPDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/drivers/TCPDriver.cpp -------------------------------------------------------------------------------- /code/core/OS/Net/drivers/TCPDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/drivers/TCPDriver.h -------------------------------------------------------------------------------- /code/core/OS/Net/drivers/UDPDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/drivers/UDPDriver.cpp -------------------------------------------------------------------------------- /code/core/OS/Net/drivers/UDPDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Net/drivers/UDPDriver.h -------------------------------------------------------------------------------- /code/core/OS/OpenSpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/OpenSpy.cpp -------------------------------------------------------------------------------- /code/core/OS/OpenSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/OpenSpy.h -------------------------------------------------------------------------------- /code/core/OS/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/Ref.h -------------------------------------------------------------------------------- /code/core/OS/gamespy/gamespy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/gamespy/gamespy.cpp -------------------------------------------------------------------------------- /code/core/OS/gamespy/gamespy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/gamespy/gamespy.h -------------------------------------------------------------------------------- /code/core/OS/gamespy/gsmsalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/gamespy/gsmsalg.cpp -------------------------------------------------------------------------------- /code/core/OS/gamespy/gsmsalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/gamespy/gsmsalg.h -------------------------------------------------------------------------------- /code/core/OS/test/TestNetIOInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/test/TestNetIOInterface.cpp -------------------------------------------------------------------------------- /code/core/OS/test/TestNetIOInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/OS/test/TestNetIOInterface.h -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/Base64.cpp -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/SSLPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/SSLPeer.cpp -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/SSLPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/SSLPeer.h -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/SSLTCPDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/SSLTCPDriver.cpp -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/SSLTCPDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/SSLTCPDriver.h -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/StringCrypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/StringCrypter.cpp -------------------------------------------------------------------------------- /code/core/SSL/OpenSSL/SSL/StringCrypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/SSL/OpenSSL/SSL/StringCrypter.h -------------------------------------------------------------------------------- /code/core/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/test/CMakeLists.txt -------------------------------------------------------------------------------- /code/core/test/OS/test_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/core/test/OS/test_buffer.cpp -------------------------------------------------------------------------------- /code/core/test/common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/gamestats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/CMakeLists.txt -------------------------------------------------------------------------------- /code/gamestats/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/main.cpp -------------------------------------------------------------------------------- /code/gamestats/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/main.h -------------------------------------------------------------------------------- /code/gamestats/server/GSDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/GSDriver.cpp -------------------------------------------------------------------------------- /code/gamestats/server/GSDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/GSDriver.h -------------------------------------------------------------------------------- /code/gamestats/server/GSPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/GSPeer.cpp -------------------------------------------------------------------------------- /code/gamestats/server/GSPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/GSPeer.h -------------------------------------------------------------------------------- /code/gamestats/server/GSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/GSServer.cpp -------------------------------------------------------------------------------- /code/gamestats/server/GSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/GSServer.h -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_auth.cpp -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_authp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_authp.cpp -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_getpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_getpd.cpp -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_getpid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_getpid.cpp -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_newgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_newgame.cpp -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_setpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_setpd.cpp -------------------------------------------------------------------------------- /code/gamestats/server/commands/handle_updgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/commands/handle_updgame.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/CDKeyAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/CDKeyAuth.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/GetGameInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/GetGameInfo.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/GetProfileIDFromCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/GetProfileIDFromCD.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/GetUserData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/GetUserData.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/GetUserKeyedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/GetUserKeyedData.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/NewGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/NewGame.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/PreAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/PreAuth.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/ProfileIDAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/ProfileIDAuth.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/SetUserData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/SetUserData.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/UpdateGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/UpdateGame.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/gamestats/server/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/gamestats/server/tasks/tasks.h -------------------------------------------------------------------------------- /code/natneg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/CMakeLists.txt -------------------------------------------------------------------------------- /code/natneg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/main.cpp -------------------------------------------------------------------------------- /code/natneg/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/main.h -------------------------------------------------------------------------------- /code/natneg/server/NATMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/NATMapper.cpp -------------------------------------------------------------------------------- /code/natneg/server/NATMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/NATMapper.h -------------------------------------------------------------------------------- /code/natneg/server/NNDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/NNDriver.cpp -------------------------------------------------------------------------------- /code/natneg/server/NNDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/NNDriver.h -------------------------------------------------------------------------------- /code/natneg/server/NNServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/NNServer.cpp -------------------------------------------------------------------------------- /code/natneg/server/NNServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/NNServer.h -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_address_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_address_check.cpp -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_connect_ack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_connect_ack.cpp -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_ert_ack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_ert_ack.cpp -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_init.cpp -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_natify_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_natify_request.cpp -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_preinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_preinit.cpp -------------------------------------------------------------------------------- /code/natneg/server/handlers/handle_report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/handlers/handle_report.cpp -------------------------------------------------------------------------------- /code/natneg/server/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/server/structs.h -------------------------------------------------------------------------------- /code/natneg/tasks/SendMsgMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/tasks/SendMsgMessage.cpp -------------------------------------------------------------------------------- /code/natneg/tasks/SubmitJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/tasks/SubmitJson.cpp -------------------------------------------------------------------------------- /code/natneg/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/natneg/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/natneg/tasks/tasks.h -------------------------------------------------------------------------------- /code/peerchat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/CMakeLists.txt -------------------------------------------------------------------------------- /code/peerchat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/main.cpp -------------------------------------------------------------------------------- /code/peerchat/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/main.h -------------------------------------------------------------------------------- /code/peerchat/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/match.cpp -------------------------------------------------------------------------------- /code/peerchat/server/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/Driver.cpp -------------------------------------------------------------------------------- /code/peerchat/server/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/Driver.h -------------------------------------------------------------------------------- /code/peerchat/server/Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/Peer.cpp -------------------------------------------------------------------------------- /code/peerchat/server/Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/Peer.h -------------------------------------------------------------------------------- /code/peerchat/server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/Server.cpp -------------------------------------------------------------------------------- /code/peerchat/server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/Server.h -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_cdkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_cdkey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_crypt.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_delchanprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_delchanprops.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_delusermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_delusermode.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_getchankey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_getchankey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_getckey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_getckey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_getkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_getkey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_join.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_kick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_kick.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_kill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_kill.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_list.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_listchanprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_listchanprops.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_listusermodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_listusermodes.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_login.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_lusers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_lusers.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_mode.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_names.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_nick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_nick.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_oper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_oper.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_part.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_ping.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_privmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_privmsg.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_quit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_quit.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_registernick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_registernick.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_setchankey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_setchankey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_setchanprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_setchanprops.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_setckey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_setckey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_setgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_setgroup.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_setkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_setkey.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_setusermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_setusermode.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_topic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_topic.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_user.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_userhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_userhost.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_who.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_who.cpp -------------------------------------------------------------------------------- /code/peerchat/server/commands/handle_whois.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/commands/handle_whois.cpp -------------------------------------------------------------------------------- /code/peerchat/server/gs_peerchat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/gs_peerchat.cpp -------------------------------------------------------------------------------- /code/peerchat/server/gs_peerchat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/gs_peerchat.h -------------------------------------------------------------------------------- /code/peerchat/server/irc_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/irc_common.cpp -------------------------------------------------------------------------------- /code/peerchat/server/irc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/server/irc_common.h -------------------------------------------------------------------------------- /code/peerchat/tasks/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Channel.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Chanprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Chanprops.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_CountServerUsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_CountServerUsers.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_DelChanProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_DelChanProps.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_DeleteUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_DeleteUser.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_DeleteUsermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_DeleteUsermode.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_GetChannelKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_GetChannelKeys.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_GetChannelUserKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_GetChannelUserKeys.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_GetUserKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_GetUserKeys.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_KeepaliveUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_KeepaliveUser.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_ListChanProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_ListChanProps.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_ListChannels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_ListChannels.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_ListUsermodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_ListUsermodes.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_LookupChannelDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_LookupChannelDetails.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_LookupGameInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_LookupGameInfo.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_LookupGlobalUsermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_LookupGlobalUsermode.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_LookupUserDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_LookupUserDetails.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_OperCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_OperCheck.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_RemoteKill_ByName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_RemoteKill_ByName.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SendMessageToTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SendMessageToTarget.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SetBroadcastToVisibleUsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SetBroadcastToVisibleUsers.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SetChanProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SetChanProps.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SetChannelKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SetChannelKeys.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SetChannelUserKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SetChannelUserKeys.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SetUserDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SetUserDetails.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_SetUserKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_SetUserKeys.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_Setusermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_Setusermode.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UpdateChannelModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UpdateChannelModes.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UpdateChannelModes_BanMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UpdateChannelModes_BanMask.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UpdateUserModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UpdateUserModes.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UserJoinChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UserJoinChannel.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UserJoinEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UserJoinEvents.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UserKickChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UserKickChannel.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Perform_UserPartChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Perform_UserPartChannel.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/User.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/Usermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/Usermode.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/peerchat/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/peerchat/tasks/tasks.h -------------------------------------------------------------------------------- /code/qr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/CMakeLists.txt -------------------------------------------------------------------------------- /code/qr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/main.cpp -------------------------------------------------------------------------------- /code/qr/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/main.h -------------------------------------------------------------------------------- /code/qr/server/QRDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/QRDriver.cpp -------------------------------------------------------------------------------- /code/qr/server/QRDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/QRDriver.h -------------------------------------------------------------------------------- /code/qr/server/QRServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/QRServer.cpp -------------------------------------------------------------------------------- /code/qr/server/QRServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/QRServer.h -------------------------------------------------------------------------------- /code/qr/server/V1Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/V1Handler.cpp -------------------------------------------------------------------------------- /code/qr/server/V2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/V2Handler.cpp -------------------------------------------------------------------------------- /code/qr/server/v1/handle_echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v1/handle_echo.cpp -------------------------------------------------------------------------------- /code/qr/server/v1/handle_heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v1/handle_heartbeat.cpp -------------------------------------------------------------------------------- /code/qr/server/v1/handle_validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v1/handle_validate.cpp -------------------------------------------------------------------------------- /code/qr/server/v1/scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v1/scan.cpp -------------------------------------------------------------------------------- /code/qr/server/v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v2.h -------------------------------------------------------------------------------- /code/qr/server/v2/handle_available.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v2/handle_available.cpp -------------------------------------------------------------------------------- /code/qr/server/v2/handle_challenge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v2/handle_challenge.cpp -------------------------------------------------------------------------------- /code/qr/server/v2/handle_client_message_ack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v2/handle_client_message_ack.cpp -------------------------------------------------------------------------------- /code/qr/server/v2/handle_heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v2/handle_heartbeat.cpp -------------------------------------------------------------------------------- /code/qr/server/v2/handle_keepalive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/server/v2/handle_keepalive.cpp -------------------------------------------------------------------------------- /code/qr/tasks/ClientMessageAck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/ClientMessageAck.cpp -------------------------------------------------------------------------------- /code/qr/tasks/GetGameInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/GetGameInfo.cpp -------------------------------------------------------------------------------- /code/qr/tasks/Handle_QRMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/Handle_QRMessage.cpp -------------------------------------------------------------------------------- /code/qr/tasks/Heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/Heartbeat.cpp -------------------------------------------------------------------------------- /code/qr/tasks/Keepalive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/Keepalive.cpp -------------------------------------------------------------------------------- /code/qr/tasks/ValidateServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/ValidateServer.cpp -------------------------------------------------------------------------------- /code/qr/tasks/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/shared.cpp -------------------------------------------------------------------------------- /code/qr/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/qr/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/qr/tasks/tasks.h -------------------------------------------------------------------------------- /code/search/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/CMakeLists.txt -------------------------------------------------------------------------------- /code/search/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/main.cpp -------------------------------------------------------------------------------- /code/search/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/main.h -------------------------------------------------------------------------------- /code/search/server/SMDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/SMDriver.cpp -------------------------------------------------------------------------------- /code/search/server/SMDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/SMDriver.h -------------------------------------------------------------------------------- /code/search/server/SMPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/SMPeer.cpp -------------------------------------------------------------------------------- /code/search/server/SMPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/SMPeer.h -------------------------------------------------------------------------------- /code/search/server/SMServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/SMServer.cpp -------------------------------------------------------------------------------- /code/search/server/SMServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/SMServer.h -------------------------------------------------------------------------------- /code/search/server/commands/handle_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_check.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_newuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_newuser.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_nicks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_nicks.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_others.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_others.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_otherslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_otherslist.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_pmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_pmatch.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_profilelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_profilelist.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_search.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_searchunique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_searchunique.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_uniquesearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_uniquesearch.cpp -------------------------------------------------------------------------------- /code/search/server/commands/handle_valid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/search/server/commands/handle_valid.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/CMakeLists.txt -------------------------------------------------------------------------------- /code/serverbrowsing/filter/CToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/filter/CToken.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/filter/CToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/filter/CToken.h -------------------------------------------------------------------------------- /code/serverbrowsing/filter/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/filter/filter.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/filter/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/filter/filter.h -------------------------------------------------------------------------------- /code/serverbrowsing/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/main.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/main.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/SBDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/SBDriver.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/SBDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/SBDriver.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/SBPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/SBPeer.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/SBPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/SBPeer.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/SBServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/SBServer.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/SBServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/SBServer.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/V1Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/V1Peer.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/V1Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/V1Peer.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/V2Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/V2Peer.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/V2Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/V2Peer.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/enctype1_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/enctype1_decoder.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/enctype1_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/enctype1_encoder.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/enctype1_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/enctype1_helper.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/enctype1_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/enctype1_helper.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/enctype_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/enctype_shared.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/gutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/gutil.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/gutil.h -------------------------------------------------------------------------------- /code/serverbrowsing/server/sb_crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/sb_crypt.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/server/sb_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/server/sb_crypt.h -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/GetGameInfoByGameName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/GetGameInfoByGameName.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/GetGameInfoPairByGameName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/GetGameInfoPairByGameName.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/GetGroups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/GetGroups.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/GetServerByIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/GetServerByIP.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/GetServerByKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/GetServerByKey.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/GetServers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/GetServers.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/HandleServerEventMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/HandleServerEventMsg.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/SubmitData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/SubmitData.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/tasks/tasks.h -------------------------------------------------------------------------------- /code/serverbrowsing/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/test/CMakeLists.txt -------------------------------------------------------------------------------- /code/serverbrowsing/test/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/test/filter/CMakeLists.txt -------------------------------------------------------------------------------- /code/serverbrowsing/test/filter/filter_basic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/test/filter/filter_basic_test.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/test/filter/filter_like_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/test/filter/filter_like_test.cpp -------------------------------------------------------------------------------- /code/serverbrowsing/test/filter/filter_subtract_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/serverbrowsing/test/filter/filter_subtract_test.cpp -------------------------------------------------------------------------------- /code/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/test/serverbrowsing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/CMakeLists.txt -------------------------------------------------------------------------------- /code/test/serverbrowsing/V1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V1/CMakeLists.txt -------------------------------------------------------------------------------- /code/test/serverbrowsing/V1/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V1/common.h -------------------------------------------------------------------------------- /code/test/serverbrowsing/V1/test_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V1/test_common.cpp -------------------------------------------------------------------------------- /code/test/serverbrowsing/V1/test_groups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V1/test_groups.cpp -------------------------------------------------------------------------------- /code/test/serverbrowsing/V2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V2/CMakeLists.txt -------------------------------------------------------------------------------- /code/test/serverbrowsing/V2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V2/common.h -------------------------------------------------------------------------------- /code/test/serverbrowsing/V2/test_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V2/test_common.cpp -------------------------------------------------------------------------------- /code/test/serverbrowsing/V2/test_groups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V2/test_groups.cpp -------------------------------------------------------------------------------- /code/test/serverbrowsing/V2/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V2/test_main.cpp -------------------------------------------------------------------------------- /code/test/serverbrowsing/V2/test_server_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/V2/test_server_message.cpp -------------------------------------------------------------------------------- /code/test/serverbrowsing/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/filter/CMakeLists.txt -------------------------------------------------------------------------------- /code/test/serverbrowsing/filter/test_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/test/serverbrowsing/filter/test_filter.cpp -------------------------------------------------------------------------------- /code/utmaster/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/CMakeLists.txt -------------------------------------------------------------------------------- /code/utmaster/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/main.cpp -------------------------------------------------------------------------------- /code/utmaster/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/main.h -------------------------------------------------------------------------------- /code/utmaster/server/UTDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/UTDriver.cpp -------------------------------------------------------------------------------- /code/utmaster/server/UTDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/UTDriver.h -------------------------------------------------------------------------------- /code/utmaster/server/UTPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/UTPeer.cpp -------------------------------------------------------------------------------- /code/utmaster/server/UTPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/UTPeer.h -------------------------------------------------------------------------------- /code/utmaster/server/UTServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/UTServer.cpp -------------------------------------------------------------------------------- /code/utmaster/server/UTServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/UTServer.h -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_challenge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_challenge.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_community_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_community_data.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_heartbeat.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_motd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_motd.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_packages_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_packages_version.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_serverlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_serverlist.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_stats_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_stats_update.cpp -------------------------------------------------------------------------------- /code/utmaster/server/commands/handle_uplink_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/server/commands/handle_uplink_info.cpp -------------------------------------------------------------------------------- /code/utmaster/tasks/PerformDeleteServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/tasks/PerformDeleteServer.cpp -------------------------------------------------------------------------------- /code/utmaster/tasks/PerformHeartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/tasks/PerformHeartbeat.cpp -------------------------------------------------------------------------------- /code/utmaster/tasks/PerformInternalLoadGameData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/tasks/PerformInternalLoadGameData.cpp -------------------------------------------------------------------------------- /code/utmaster/tasks/PerformListServers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/tasks/PerformListServers.cpp -------------------------------------------------------------------------------- /code/utmaster/tasks/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/tasks/tasks.cpp -------------------------------------------------------------------------------- /code/utmaster/tasks/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/code/utmaster/tasks/tasks.h -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker-support/fesl_tos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/fesl_tos.txt -------------------------------------------------------------------------------- /docker-support/motd-community.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/motd-community.txt -------------------------------------------------------------------------------- /docker-support/motd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/motd.txt -------------------------------------------------------------------------------- /docker-support/password_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/password_key.pem -------------------------------------------------------------------------------- /docker-support/rsa_priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/rsa_priv.pem -------------------------------------------------------------------------------- /docker-support/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/run.sh -------------------------------------------------------------------------------- /docker-support/utmaster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/utmaster.xml -------------------------------------------------------------------------------- /docker-support/x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/docker-support/x509.pem -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openspy/openspy-core/HEAD/vcpkg.json --------------------------------------------------------------------------------