* Auth lib builds again.

--HG--
branch : trunk
This commit is contained in:
Brian
2010-06-07 07:43:20 -06:00
parent cbaf5587d6
commit 36584926e6
12 changed files with 18 additions and 18 deletions

View File

@@ -76,7 +76,7 @@
#endif // __SHOW_STUPID_WARNINGS__
#endif // __GNUC__
#include "UnorderedMap.h"
#include "Dynamic/UnorderedMap.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -100,8 +100,8 @@
#include <sstream>
#include <algorithm>
#include "LockedQueue.h"
#include "Threading.h"
#include "Threading/LockedQueue.h"
#include "Threading/Threading.h"
#include <ace/Basic_Types.h>
#include <ace/Guard_T.h>

View File

@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "Auth/SARC4.h"
#include "ARC4.h"
#include <openssl/sha.h>
SARC4::SARC4(uint8 len)

View File

@@ -19,9 +19,9 @@
*/
#include "AuthCrypt.h"
#include "Hmac.h"
#include "Log.h"
#include "BigNumber.h"
#include "Cryptography/HMACSHA1.h"
#include "Logging/Log.h"
#include "Cryptography/BigNumber.h"
AuthCrypt::AuthCrypt() : _clientDecrypt(SHA_DIGEST_LENGTH), _serverEncrypt(SHA_DIGEST_LENGTH)
{

View File

@@ -22,7 +22,7 @@
#define _AUTHCRYPT_H
#include <Common.h>
#include "SARC4.h"
#include "Cryptography/ARC4.h"
class BigNumber;

View File

@@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "Auth/BigNumber.h"
#include "Cryptography/BigNumber.h"
#include <openssl/bn.h>
#include <algorithm>

View File

@@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "Auth/Hmac.h"
#include "HMACSHA1.h"
#include "BigNumber.h"
HmacHash::HmacHash(uint32 len, uint8 *seed)

View File

@@ -51,7 +51,7 @@ self-checking.
1999-05-03 lpd Original version.
*/
#include "md5.h"
#include "MD5.h"
#include <string.h>
#undef BYTE_ORDER /* 1 = big-endian, -1 = little-endian, 0 = unknown */

View File

@@ -18,8 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "Auth/Sha1.h"
#include "Auth/BigNumber.h"
#include "SHA1.h"
#include "BigNumber.h"
#include <stdarg.h>
Sha1Hash::Sha1Hash()

View File

@@ -21,7 +21,7 @@
#ifndef DATABASE_H
#define DATABASE_H
#include "Threading.h"
#include "Threading/Threading.h"
#include "Dynamic/UnorderedMap.h"
#include "Database/SqlDelayThread.h"
#include "Policies/Singleton.h"

View File

@@ -22,8 +22,8 @@
#define DATABASEENV_H
#include "Common.h"
#include "Log.h"
#include "Errors.h"
#include "Logging/Log.h"
#include "Debugging/Errors.h"
#include "Database/Field.h"
#include "Database/QueryResult.h"

View File

@@ -23,7 +23,7 @@
#include "ace/Thread_Mutex.h"
#include "ace/Activation_Queue.h"
#include "Threading.h"
#include "Threading/Threading.h"
class Database;
class SqlOperation;

View File

@@ -23,7 +23,7 @@
#include <ace/Thread_Mutex.h>
#include <deque>
#include <assert.h>
#include "Errors.h"
#include "Debugging/Errors.h"
namespace ACE_Based
{