$OpenBSD$ index 4e727c4..66a78a4 100644 --- netwerk/base/src/nsProxyInfo.cpp.orig Fri Feb 20 15:40:37 2015 +++ netwerk/base/src/nsProxyInfo.cpp Fri Feb 20 15:40:37 2015 @@ -48,6 +48,20 @@ nsProxyInfo::GetResolveFlags(uint32_t *result) } NS_IMETHODIMP +nsProxyInfo::GetUsername(nsACString &result) +{ + result = mUsername; + return NS_OK; +} + +NS_IMETHODIMP +nsProxyInfo::GetPassword(nsACString &result) +{ + result = mPassword; + return NS_OK; +} + +NS_IMETHODIMP nsProxyInfo::GetFailoverTimeout(uint32_t *result) { *result = mTimeout;