refactored ISocket into IDataSocket. the latter and IListenSocket

now derive from ISocket.
This commit is contained in:
crs
2002-06-17 12:02:26 +00:00
parent e3dcf7febf
commit 57fb87ad10
14 changed files with 78 additions and 59 deletions

View File

@@ -3,7 +3,7 @@
#include "CHTTPProtocol.h"
#include "CServer.h"
#include "XHTTP.h"
#include "ISocket.h"
#include "IDataSocket.h"
#include "XThread.h"
#include "CLog.h"
#include "stdset.h"
@@ -32,7 +32,7 @@ CHTTPServer::~CHTTPServer()
void
CHTTPServer::processRequest(
ISocket* socket)
IDataSocket* socket)
{
assert(socket != NULL);