aboutsummaryrefslogtreecommitdiff
path: root/src/trinitycore/RASocket.h
diff options
context:
space:
mode:
authormaximius <none@none>2009-10-17 15:35:07 -0700
committermaximius <none@none>2009-10-17 15:35:07 -0700
commit26b5e033ffde3d161382fc9addbfa99738379641 (patch)
treea344f369ca32945f787a02dee35c3dbe342bed7e /src/trinitycore/RASocket.h
parentf21f47005dcb6b76e1abc9f35fbcd03eed191bff (diff)
*Massive cleanup (\n\n -> \n, *\n -> \n, cleanup for(...) to for (...), and some other cleanups by hand)
*Fix a possible crash in Spell::DoAllEffectOnTarget --HG-- branch : trunk
Diffstat (limited to 'src/trinitycore/RASocket.h')
-rw-r--r--src/trinitycore/RASocket.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/trinitycore/RASocket.h b/src/trinitycore/RASocket.h
index 330c85defa4..813627766a5 100644
--- a/src/trinitycore/RASocket.h
+++ b/src/trinitycore/RASocket.h
@@ -17,35 +17,24 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
/// \addtogroup Trinityd
/// @{
/// \file
-
#ifndef _RASOCKET_H
#define _RASOCKET_H
-
#include "sockets/TcpSocket.h"
-
#include "Common.h"
-
#define RA_BUFF_SIZE 1024
-
class ISocketHandler;
-
/// Remote Administration socket
class RASocket: public TcpSocket
{
public:
-
RASocket(ISocketHandler& h);
~RASocket();
-
void OnAccept();
void OnRead();
-
private:
-
char * buff;
std::string szLogin;
uint32 iSess;
@@ -61,7 +50,6 @@ class RASocket: public TcpSocket
LG, //only login was entered
OK, //both login and pass were given, and they are correct and user have enough priv.
}stage;
-
static void zprint( const char * szText );
};
#endif