First version of server side avatar upload feature (support for external avatar server). Still hard coded, cannot be configured.

This commit is contained in:
lotodore
2009-02-21 23:33:30 +00:00
parent f78de09078
commit e7c70ad9ad
14 changed files with 560 additions and 153 deletions
+3
View File
@@ -35,6 +35,7 @@
#define MAX_AVATAR_FILE_SIZE 30720
struct AvatarFileState;
class UploaderThread;
class AvatarManager
{
@@ -77,6 +78,8 @@ private:
mutable boost::mutex m_cacheDirMutex;
std::string m_cacheDir;
boost::shared_ptr<UploaderThread> m_uploader;
};
#endif