aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver
AgeCommit message (Collapse)Author
2010-07-31Remove duplicate "Error:" from some outError messages...click
--HG-- branch : trunk
2010-07-29Buildsystem/CMake: Include core/script headerfiles in generated MSVC-projects.click
- Still "work in progress", as in missing filters and MSVC folder layouts. - external libraries not fully "headerified" (not really required) --HG-- branch : trunk
2010-07-29remove ANSI escape codes from auth/worldserver error-output since it doesn't ↵click
work on MS-based OS'es *sighs* --HG-- branch : trunk
2010-07-29Fix windows-build and change some warnings if configuration-files can not be ↵click
read properly - Add proper warning about missing [authserver] -tag in authserver configuration file if not found. - Add proper warning about missing [worldserver] -tag in worldserver configuration file if not found. Thanks to Qaston for finding the redefininition of strdup! --HG-- branch : trunk
2010-07-29Convert to using ACE for reading configurationfiles, and remove dependency ↵click
on dotconfpp configuration library and related files (patch by astellar - and a thankyou to vladimir for being a russian teddybear) --HG-- branch : trunk
2010-07-23Fix naming in config files.XTZGZoReX
--HG-- branch : trunk
2010-07-12Renamed "realmd" to "auth" in config files.teacher
Renamed "character_database.sql" to "characters_database.sql". (yeah I know, you're gonna hate me, but I'm pedantic!) --HG-- branch : trunk
2010-06-30* Update for 3.3.5aBrian
--HG-- branch : trunk
2010-06-30* Fix expected client buildBrian
--HG-- branch : trunk
2010-06-30Minor cleanups to accomodate CMake-usage on Windowsclick
--HG-- branch : trunk
2010-06-30And even more CMake-specific cleanups (mutes most of the "non-harmful" ↵click
warnings - VS is just trying to be too friendly/noisy at times) --HG-- branch : trunk
2010-06-30It is now possible to use CMake on windows for proper build (PCH support ↵Shauren
included) Merged PCH header into gamePCH since they became the same after these changes --HG-- branch : trunk rename : src/server/game/PrecompiledHeaders/NixCorePCH.cpp => src/server/game/PrecompiledHeaders/gamePCH.cpp rename : src/server/game/PrecompiledHeaders/NixCorePCH.h => src/server/game/PrecompiledHeaders/gamePCH.h
2010-06-28Add prepared statement example for auth server pingMachiavelli
--HG-- branch : trunk
2010-06-25Set revision.h to be a prerequisite of worldserver and authserver building ↵click
on *nix --HG-- branch : trunk
2010-06-24Remove a possible NaN-value in WorldObject::HasInArc (thanks to arrai)click
+ do some hack'n'slash-work on the CMakeLists with my trusted axe ( I just LOVE being a viking - I get to wield an axe for free!) --HG-- branch : trunk
2010-06-23* Renamed several VS projects and the executables they produce to reflect ↵Xanadu
the new naming convention. * Cleaned up some useless and redundant preprocessor definitions. * Fixed the win build so that it correctly uses the mysql lib it built from the sources. * Note that you still need to use 8615_mysql_openssl_libs.zip for the OpenSSL binaries. * Also note that Win x64 build from the existing VS files is still fubar (mysql lib...). --HG-- branch : trunk
2010-06-21Add more CMake-related support for building g3dlib, zlib, bzip2, ace on Windowsclick
--HG-- branch : trunk
2010-06-16Adjust CMake "searchmacros" bit so that they point to correct locationsclick
--HG-- branch : trunk
2010-06-14Remove old DO_MYSQL-params in CMakeLists.txt files - not required as we only ↵click
support MySQL anyway + add partial support for finding headers on Windows (not yet done) --HG-- branch : trunk
2010-06-10Fixed TrinityRealm compile on windowsShauren
Fixed shared build on windows fully NOTE: TrinityRealm config file has been renamed to authserver.conf! --HG-- branch : trunk
2010-06-09win build: fixed game pch, generating revision.h, realm source dirs (but it ↵Shauren
doesnt build yet) --HG-- branch : trunk
2010-06-09* Rename conf file / icon file / Window file propertiesBrian
--HG-- branch : trunk rename : src/server/authserver/trinityrealm.conf.dist => src/server/authserver/authserver.conf.dist rename : src/server/authserver/TrinityRealm.ico => src/server/authserver/authserver.ico rename : src/server/authserver/TrinityRealm.rc => src/server/authserver/authserver.rc
2010-06-09Fix some typos on authserver & worldserver renamingTartalo
--HG-- branch : trunk
2010-06-09Add copyright notes to CMake filesTartalo
--HG-- branch : trunk
2010-06-09Rename trinity-realm to authserverTartalo
--HG-- branch : trunk
2010-06-08more cmake fixes. comment collision compilation until fixedTartalo
--HG-- branch : trunk
2010-06-07More cmake fixes. Now cmake runs without errors with -DO_SCRIPTS=0Tartalo
--HG-- branch : trunk
2010-06-06* Delivering file deletions...XTZGZoReX
--HG-- branch : trunk
2010-06-06* Restructuring authserver and worldserver.XTZGZoReX
--HG-- branch : trunk
2010-06-06And more fixes for cmake (not finished yet)Tartalo
--HG-- branch : trunk
2010-06-05rename world server directory (trinitycore) to worldserver, rename ↵click
authserver directory (trinityrealm) to authserver to reflect their real purposes --HG-- branch : trunk rename : src/server/trinityrealm/AuthCodes.cpp => src/server/authserver/AuthCodes.cpp rename : src/server/trinityrealm/AuthCodes.h => src/server/authserver/AuthCodes.h rename : src/server/trinityrealm/AuthSocket.cpp => src/server/authserver/AuthSocket.cpp rename : src/server/trinityrealm/AuthSocket.h => src/server/authserver/AuthSocket.h rename : src/server/trinityrealm/CMakeLists.txt => src/server/authserver/CMakeLists.txt rename : src/server/trinityrealm/Main.cpp => src/server/authserver/Main.cpp rename : src/server/trinityrealm/RealmAcceptor.h => src/server/authserver/RealmAcceptor.h rename : src/server/trinityrealm/RealmList.cpp => src/server/authserver/RealmList.cpp rename : src/server/trinityrealm/RealmList.h => src/server/authserver/RealmList.h rename : src/server/trinityrealm/RealmSocket.cpp => src/server/authserver/RealmSocket.cpp rename : src/server/trinityrealm/RealmSocket.h => src/server/authserver/RealmSocket.h rename : src/server/trinityrealm/TrinityRealm.ico => src/server/authserver/TrinityRealm.ico rename : src/server/trinityrealm/TrinityRealm.rc => src/server/authserver/TrinityRealm.rc rename : src/server/trinityrealm/resource.h => src/server/authserver/resource.h rename : src/server/trinityrealm/trinityrealm.conf.dist => src/server/authserver/trinityrealm.conf.dist rename : src/server/trinitycore/CMakeLists.txt => src/server/worldserver/CMakeLists.txt rename : src/server/trinitycore/CliRunnable.cpp => src/server/worldserver/CliRunnable.cpp rename : src/server/trinitycore/CliRunnable.h => src/server/worldserver/CliRunnable.h rename : src/server/trinitycore/Main.cpp => src/server/worldserver/Main.cpp rename : src/server/trinitycore/Master.cpp => src/server/worldserver/Master.cpp rename : src/server/trinitycore/Master.h => src/server/worldserver/Master.h rename : src/server/trinitycore/RASocket.cpp => src/server/worldserver/RASocket.cpp rename : src/server/trinitycore/RASocket.h => src/server/worldserver/RASocket.h rename : src/server/trinitycore/TrinityCore.ico => src/server/worldserver/TrinityCore.ico rename : src/server/trinitycore/TrinityCore.rc => src/server/worldserver/TrinityCore.rc rename : src/server/trinitycore/WorldRunnable.cpp => src/server/worldserver/WorldRunnable.cpp rename : src/server/trinitycore/WorldRunnable.h => src/server/worldserver/WorldRunnable.h rename : src/server/trinitycore/resource.h => src/server/worldserver/resource.h rename : src/server/trinitycore/trinitycore.conf.dist => src/server/worldserver/trinitycore.conf.dist