integrated changes from 1.3.5

This commit is contained in:
Guenter Obiltschnig
2009-06-16 17:04:40 +00:00
parent 99c48cff49
commit c93c16008b
9 changed files with 53 additions and 62 deletions

View File

@@ -1,7 +1,7 @@
//
// StreamSocketImpl.cpp
//
// $Id: //poco/Main/Net/src/StreamSocketImpl.cpp#9 $
// $Id: //poco/Main/Net/src/StreamSocketImpl.cpp#10 $
//
// Library: Net
// Package: Sockets
@@ -35,6 +35,7 @@
#include "Poco/Net/StreamSocketImpl.h"
#include "Poco/Exception.h"
namespace Poco {
@@ -54,7 +55,7 @@ StreamSocketImpl::StreamSocketImpl(IPAddress::Family family)
else if (family == IPAddress::IPv6)
init(AF_INET6);
#endif
else throw InvalidArgumentException("Invalid or unsupported address family passed to StreamSocketImpl");
else throw Poco::InvalidArgumentException("Invalid or unsupported address family passed to StreamSocketImpl");
}