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.
19 lines
519 B
C++
19 lines
519 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 "CommLocalClient.h"
|
|
|
|
#include "TrustedConnection.h"
|
|
#include "CommServer.h"
|
|
|
|
CommLocalClient::CommLocalClient(CommServer & svr, int fd) :
|
|
CommClient(svr, fd, *new TrustedConnection("local", *this,
|
|
svr.server))
|
|
{
|
|
}
|
|
|
|
|
|
CommLocalClient::~CommLocalClient()
|
|
{
|
|
}
|