blob: ad7855a88bd22001fec21a851c745c601c0a41d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* Copyright (C) 2007-2010 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "win32_compatibility.h"
#include "bu/multiserver.h"
#include "bu/protocol.h"
#include "bu/client.h"
Bu::MultiServer::MultiServer()
{
}
Bu::MultiServer::~MultiServer()
{
}
void Bu::MultiServer::addProtocol( Bu::Protocol *(*proc)(), int iPort,
int nPoolSize )
{
hProtos[iPort] = proc;
addPort( iPort, nPoolSize );
}
void Bu::MultiServer::addProtocol( Protocol *(*proc)(), const FString &sAddr,
int iPort, int nPoolSize )
{
hProtos[iPort] = proc;
addPort( sAddr, iPort, nPoolSize );
}
void Bu::MultiServer::onNewConnection( Bu::Client *pClient, int nPort )
{
pClient->setProtocol( hProtos.get( nPort )() );
}
void Bu::MultiServer::onClosedConnection( Bu::Client *pClient )
{
delete pClient->getProtocol();
}
|