Autogenerated with:
cp dom/.clang-format netwerk/ && mach format netwerk/**.{cpp,h,mm}
Manual fixes:
* mozurl/cbindgen.toml (including headers earlier)
* NetlinkService.h (forward-declaring a necessary struct)
* nsIWebSocketChannel.idl (forward-declaring OriginAttributes).
* nsAsyncRedirectVerifyHelper.h (forward-declaring nsIEventTarget)
* CapsuleEncoder.h gets a missing Capsule forward-decl.
* WebSocketConnectionBase.h gets some missing includes.
* HappyEyeballsConnectionAttempt gets some missing includes.
* nsUDPSocket missed nsSocketTransportService2.h for OnSocketThread().
* HttpInfo missed a forward declaration.
* MockHttpAuth missed an nsCOMPtr include.
* nsHttpAuthManager missed a forward declaration for nsIHttpAuthCache.
* WebTransportSessionProxy was using mozilla::Mutex in a member without
including it.
* win32 fixes to keep include order because windows headers suck.
* nsInputStreamPump needs an Atomics.h include.
Differential Revision: https://phabricator.services.mozilla.com/D311696
120 lines
2.5 KiB
C++
120 lines
2.5 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsNetAddr.h"
|
|
|
|
#include "mozilla/net/DNS.h"
|
|
#include "nsString.h"
|
|
|
|
using namespace mozilla::net;
|
|
|
|
NS_IMPL_ISUPPORTS(nsNetAddr, nsINetAddr)
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetFamily(uint16_t* aFamily) {
|
|
switch (mAddr.raw.family) {
|
|
case AF_INET:
|
|
*aFamily = nsINetAddr::FAMILY_INET;
|
|
break;
|
|
case AF_INET6:
|
|
*aFamily = nsINetAddr::FAMILY_INET6;
|
|
break;
|
|
#if defined(XP_UNIX)
|
|
case AF_LOCAL:
|
|
*aFamily = nsINetAddr::FAMILY_LOCAL;
|
|
break;
|
|
#endif
|
|
default:
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetAddress(nsACString& aAddress) {
|
|
if (!mAddr.ToString(aAddress)) {
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetPort(uint16_t* aPort) {
|
|
switch (mAddr.raw.family) {
|
|
case AF_INET:
|
|
*aPort = ntohs(mAddr.inet.port);
|
|
break;
|
|
case AF_INET6:
|
|
*aPort = ntohs(mAddr.inet6.port);
|
|
break;
|
|
#if defined(XP_UNIX)
|
|
case AF_LOCAL:
|
|
// There is no port number for local / connections.
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
#endif
|
|
default:
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetFlow(uint32_t* aFlow) {
|
|
switch (mAddr.raw.family) {
|
|
case AF_INET6:
|
|
*aFlow = ntohl(mAddr.inet6.flowinfo);
|
|
break;
|
|
case AF_INET:
|
|
#if defined(XP_UNIX)
|
|
case AF_LOCAL:
|
|
#endif
|
|
// only for IPv6
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
default:
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetScope(uint32_t* aScope) {
|
|
switch (mAddr.raw.family) {
|
|
case AF_INET6:
|
|
*aScope = ntohl(mAddr.inet6.scope_id);
|
|
break;
|
|
case AF_INET:
|
|
#if defined(XP_UNIX)
|
|
case AF_LOCAL:
|
|
#endif
|
|
// only for IPv6
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
default:
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetIsV4Mapped(bool* aIsV4Mapped) {
|
|
switch (mAddr.raw.family) {
|
|
case AF_INET6:
|
|
*aIsV4Mapped = IPv6ADDR_IS_V4MAPPED(&mAddr.inet6.ip);
|
|
break;
|
|
case AF_INET:
|
|
#if defined(XP_UNIX)
|
|
case AF_LOCAL:
|
|
#endif
|
|
// only for IPv6
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
default:
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsNetAddr::GetNetAddr(NetAddr* aResult) {
|
|
*aResult = mAddr;
|
|
return NS_OK;
|
|
}
|