1
This commit is contained in:
parent
851b939da4
commit
64d4916dbe
@ -1 +1,3 @@
|
|||||||
#include "precompile.h"
|
#include "precompile.h"
|
||||||
|
|
||||||
|
#include "longsession.h"
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
class LongSession
|
||||||
|
{
|
||||||
|
|
||||||
|
private:
|
||||||
|
int socket_handle_ = a8::INVALID_SOCKET_HANDLE;
|
||||||
|
|
||||||
|
};
|
@ -1,13 +1,13 @@
|
|||||||
#include "precompile.h"
|
#include "precompile.h"
|
||||||
|
|
||||||
#include "kcpmgr.h"
|
#include "longsessionmgr.h"
|
||||||
|
|
||||||
void HandshakeMgr::Init()
|
void LongSessionMgr::Init()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HandshakeMgr::UnInit()
|
void LongSessionMgr::UnInit()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
#include <a8/singleton.h>
|
#include <a8/singleton.h>
|
||||||
|
|
||||||
class HandshakeMgr : public a8::Singleton<HandshakeMgr>
|
class LongSessionMgr : public a8::Singleton<LongSessionMgr>
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
HandshakeMgr() {};
|
LongSessionMgr() {};
|
||||||
friend class a8::Singleton<HandshakeMgr>;
|
friend class a8::Singleton<LongSessionMgr>;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user