aboutsummaryrefslogtreecommitdiff
path: root/dep/src/sockets/Ipv4Address.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/src/sockets/Ipv4Address.cpp')
-rw-r--r--dep/src/sockets/Ipv4Address.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/dep/src/sockets/Ipv4Address.cpp b/dep/src/sockets/Ipv4Address.cpp
index b89cc2a449b..edd56ece048 100644
--- a/dep/src/sockets/Ipv4Address.cpp
+++ b/dep/src/sockets/Ipv4Address.cpp
@@ -5,17 +5,14 @@
**/
/*
Copyright (C) 2007 Anders Hedstrom
-
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
-
This program 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.
-
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
@@ -27,13 +24,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <netdb.h>
#endif
-
#ifdef SOCKETS_NAMESPACE
namespace SOCKETS_NAMESPACE {
#endif
-
-
Ipv4Address::Ipv4Address(port_t port) : m_valid(true)
{
memset(&m_addr, 0, sizeof(m_addr));
@@ -41,7 +35,6 @@ Ipv4Address::Ipv4Address(port_t port) : m_valid(true)
m_addr.sin_port = htons( port );
}
-
Ipv4Address::Ipv4Address(ipaddr_t a,port_t port) : m_valid(true)
{
memset(&m_addr, 0, sizeof(m_addr));
@@ -50,7 +43,6 @@ Ipv4Address::Ipv4Address(ipaddr_t a,port_t port) : m_valid(true)
memcpy(&m_addr.sin_addr, &a, sizeof(struct in_addr));
}
-
Ipv4Address::Ipv4Address(struct in_addr& a,port_t port) : m_valid(true)
{
memset(&m_addr, 0, sizeof(m_addr));
@@ -59,7 +51,6 @@ Ipv4Address::Ipv4Address(struct in_addr& a,port_t port) : m_valid(true)
m_addr.sin_addr = a;
}
-
Ipv4Address::Ipv4Address(const std::string& host,port_t port) : m_valid(false)
{
memset(&m_addr, 0, sizeof(m_addr));
@@ -75,43 +66,36 @@ Ipv4Address::Ipv4Address(const std::string& host,port_t port) : m_valid(false)
}
}
-
Ipv4Address::Ipv4Address(struct sockaddr_in& sa)
{
m_addr = sa;
m_valid = sa.sin_family == AF_INET;
}
-
Ipv4Address::~Ipv4Address()
{
}
-
Ipv4Address::operator struct sockaddr *()
{
return (struct sockaddr *)&m_addr;
}
-
Ipv4Address::operator socklen_t()
{
return sizeof(struct sockaddr_in);
}
-
void Ipv4Address::SetPort(port_t port)
{
m_addr.sin_port = htons( port );
}
-
port_t Ipv4Address::GetPort()
{
return ntohs( m_addr.sin_port );
}
-
bool Ipv4Address::Resolve(const std::string& hostname,struct in_addr& a)
{
struct sockaddr_in sa;
@@ -129,7 +113,6 @@ bool Ipv4Address::Resolve(const std::string& hostname,struct in_addr& a)
return true;
}
-
bool Ipv4Address::Reverse(struct in_addr& a,std::string& name)
{
struct sockaddr_in sa;
@@ -139,7 +122,6 @@ bool Ipv4Address::Reverse(struct in_addr& a,std::string& name)
return Utility::reverse((struct sockaddr *)&sa, sizeof(sa), name);
}
-
std::string Ipv4Address::Convert(bool include_port)
{
if (include_port)
@@ -147,7 +129,6 @@ std::string Ipv4Address::Convert(bool include_port)
return Convert(m_addr.sin_addr);
}
-
std::string Ipv4Address::Convert(struct in_addr& a)
{
struct sockaddr_in sa;
@@ -159,25 +140,21 @@ std::string Ipv4Address::Convert(struct in_addr& a)
return name;
}
-
void Ipv4Address::SetAddress(struct sockaddr *sa)
{
memcpy(&m_addr, sa, sizeof(struct sockaddr_in));
}
-
int Ipv4Address::GetFamily()
{
return m_addr.sin_family;
}
-
bool Ipv4Address::IsValid()
{
return m_valid;
}
-
bool Ipv4Address::operator==(SocketAddress& a)
{
if (a.GetFamily() != GetFamily())
@@ -193,13 +170,11 @@ bool Ipv4Address::operator==(SocketAddress& a)
return true;
}
-
std::auto_ptr<SocketAddress> Ipv4Address::GetCopy()
{
return std::auto_ptr<SocketAddress>(new Ipv4Address(m_addr));
}
-
std::string Ipv4Address::Reverse()
{
std::string tmp;
@@ -207,9 +182,7 @@ std::string Ipv4Address::Reverse()
return tmp;
}
-
#ifdef SOCKETS_NAMESPACE
} // namespace SOCKETS_NAMESPACE {
#endif
-