mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* server/CommListener.cpp, server/CommLocalClient.cpp, server/CommRemoteClient.cpp, server/CommRemoteClient.h, server/CommClient.cpp: Clean up code for getting presentation format addresses as connection id.
18 lines
459 B
C++
18 lines
459 B
C++
// This file may be redistributed and modified only under the terms of
|
|
// the GNU General Public License (See COPYING for details).
|
|
// Copyright (C) 2000-2003 Alistair Riddoch
|
|
|
|
#include "CommRemoteClient.h"
|
|
|
|
#include "Connection.h"
|
|
#include "CommServer.h"
|
|
|
|
CommRemoteClient::CommRemoteClient(CommServer & svr, int fd, const std::string & addr) :
|
|
CommClient(svr, fd, *new Connection(addr, *this, svr.server))
|
|
{
|
|
}
|
|
|
|
|
|
CommRemoteClient::~CommRemoteClient()
|
|
{
|
|
}
|