cyphesis/server/CommLocalClient.cpp
Al Riddoch 476e586aeb 2003-03-18 Al Riddoch <alriddoch@zepler.org>
* Depend on devel skstream.

	* server/CommLocalClient.cpp, server/TrustedConnection.h,
	  server/TrustedConnection.cpp: Added trusted connection on local
	  unix socket clients, which does not require a password for logins.
2003-03-18 18:21:13 +00:00

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 "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()
{
}