mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 13:47:10 +01:00
merge Unix Domain Sockets support and other changes from develop
This commit is contained in:
@@ -143,7 +143,7 @@ const void* IPv4AddressImpl::addr() const
|
||||
|
||||
IPAddressImpl::Family IPv4AddressImpl::family() const
|
||||
{
|
||||
return IPAddressImpl::IPv4;
|
||||
return AddressFamily::IPv4;
|
||||
}
|
||||
|
||||
|
||||
@@ -500,7 +500,7 @@ const void* IPv6AddressImpl::addr() const
|
||||
|
||||
IPAddressImpl::Family IPv6AddressImpl::family() const
|
||||
{
|
||||
return IPAddressImpl::IPv6;
|
||||
return AddressFamily::IPv6;
|
||||
}
|
||||
|
||||
|
||||
@@ -535,6 +535,8 @@ unsigned IPv6AddressImpl::prefixLength() const
|
||||
throw NotImplementedException("prefixLength() not implemented");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Poco::UInt32 IPv6AddressImpl::scope() const
|
||||
{
|
||||
return _scope;
|
||||
|
||||
Reference in New Issue
Block a user