2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "XSocket.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "CStringUtil.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// XSocketAddress
|
|
|
|
//
|
|
|
|
|
2002-07-28 19:06:52 +00:00
|
|
|
XSocketAddress::XSocketAddress(EError error,
|
2003-01-04 22:01:32 +00:00
|
|
|
const CString& hostname, int port) throw() :
|
2002-06-10 22:06:45 +00:00
|
|
|
m_error(error),
|
|
|
|
m_hostname(hostname),
|
|
|
|
m_port(port)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-07-28 19:06:52 +00:00
|
|
|
XSocketAddress::EError
|
2002-06-10 22:06:45 +00:00
|
|
|
XSocketAddress::getError() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_error;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XSocketAddress::getHostname() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_hostname;
|
|
|
|
}
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
int
|
2002-06-10 22:06:45 +00:00
|
|
|
XSocketAddress::getPort() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_port;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XSocketAddress::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-25 17:52:40 +00:00
|
|
|
static const char* s_errorID[] = {
|
|
|
|
"XSocketAddressUnknown",
|
|
|
|
"XSocketAddressNotFound",
|
|
|
|
"XSocketAddressNoAddress",
|
|
|
|
"XSocketAddressBadPort"
|
|
|
|
};
|
|
|
|
static const char* s_errorMsg[] = {
|
|
|
|
"unknown error for: %{1}:%{2}",
|
|
|
|
"address not found for: %{1}",
|
|
|
|
"no address for: %{1}",
|
2002-07-25 17:58:01 +00:00
|
|
|
"invalid port" // m_port may not be set to the bad port
|
2002-07-25 17:52:40 +00:00
|
|
|
};
|
|
|
|
return format(s_errorID[m_error], s_errorMsg[m_error],
|
|
|
|
m_hostname.c_str(),
|
|
|
|
CStringUtil::print("%d", m_port).c_str());
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-14 20:56:28 +00:00
|
|
|
//
|
|
|
|
// XSocketIOClose
|
|
|
|
//
|
|
|
|
|
|
|
|
CString
|
|
|
|
XSocketIOClose::getWhat() const throw()
|
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
return format("XSocketIOClose", "close: %{1}", what());
|
2002-09-14 20:56:28 +00:00
|
|
|
}
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// XSocketBind
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XSocketBind::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
return format("XSocketBind", "cannot bind address: %{1}", what());
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// XSocketConnect
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XSocketConnect::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
return format("XSocketConnect", "cannot connect socket: %{1}", what());
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// XSocketCreate
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XSocketCreate::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
return format("XSocketCreate", "cannot create socket: %{1}", what());
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|