diff options
author | Basilisk-Dev <basiliskdev@protonmail.com> | 2022-08-20 22:08:28 -0400 |
---|---|---|
committer | Basilisk-Dev <basiliskdev@protonmail.com> | 2022-08-20 22:08:28 -0400 |
commit | aacd52f00f3fc0e466fbd56da3688607cd81377c (patch) | |
tree | dc6306b0d021c168efd846bbc7fe36cd4e50fc1f /netwerk/protocol/http | |
parent | 0dad0315dda12ed7db005d0247c5f02e0eccdceb (diff) | |
download | uxp-aacd52f00f3fc0e466fbd56da3688607cd81377c.tar.gz |
Issue #1991 - backport Mozilla bug 1266667
Diffstat (limited to 'netwerk/protocol/http')
-rw-r--r-- | netwerk/protocol/http/TunnelUtils.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/netwerk/protocol/http/TunnelUtils.cpp b/netwerk/protocol/http/TunnelUtils.cpp index eeaf57f55c..01075d2c0c 100644 --- a/netwerk/protocol/http/TunnelUtils.cpp +++ b/netwerk/protocol/http/TunnelUtils.cpp @@ -1686,6 +1686,12 @@ SocketTransportShim::SetTimeout(uint32_t aType, uint32_t aValue) } NS_IMETHODIMP +SocketTransportShim::SetReuseAddrPort(bool aReuseAddrPort) +{ + return mWrapped->SetReuseAddrPort(aReuseAddrPort); +} + +NS_IMETHODIMP SocketTransportShim::GetQoSBits(uint8_t *aQoSBits) { return mWrapped->GetQoSBits(aQoSBits); |