summaryrefslogtreecommitdiff
path: root/src/account-server/account.h
AgeCommit message (Collapse)AuthorFilesLines
2022-08-19Apply C++11 fixitsThorbjørn Lindeijer1-1/+1
modernize-loop-convert modernize-deprecated-headers
2022-08-19Apply C++11 fixitsThorbjørn Lindeijer1-1/+1
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using
2013-12-08Delete some unused copy constructorsThorbjørn Lindeijer1-2/+2
2013-05-02Fixed a bunch of cppcheck warningsErik Schilling1-0/+3
2013-04-11Renamed Character -> CharacterData in the accountserverErik Schilling1-1/+1
2013-01-09Replaced 'unsigned int' with 'unsigned'Thorbjørn Lindeijer1-1/+1
Same thing, but shorter.
2011-08-10login with random hashStefan Beller1-0/+20
The account server sends out a random number, which is additionally used for hashing the password. Reviewed by Bertram
2011-03-20General cleanups and code style fixesThorbjørn Lindeijer1-1/+1
A bunch of variables that were continuously requested from the configuration are now members of the AccountHandler. Reviewed-by: Freeyorp
2011-03-12Removed a bunch of silly documentationThorbjørn Lindeijer1-7/+2
A C++ developer should be able to recognize a constructor and a destructor by just looking at it, so let's stop writing down the obvious. :)
2010-12-29Made the server handle properly the characters slots.Yohann Ferreira1-2/+9
I turned the vector storing character data into a map, keeping the character's slot. Fixed a memleak along the way. Reviewed-by: Crush.
2010-11-14Renamed .hpp files into .h for consistency.Yohann Ferreira1-0/+215
Also added an header to the autoattack.{h,cpp} files. Big but trivial fix.