$OpenBSD$ index 4f7034d..c2b345a 100644 --- netwerk/protocol/http/nsHttpConnectionInfo.h.orig Fri Feb 20 15:40:37 2015 +++ netwerk/protocol/http/nsHttpConnectionInfo.h Fri Feb 20 15:40:37 2015 @@ -48,6 +48,8 @@ public: const char *ProxyHost() const { return mProxyInfo ? mProxyInfo->Host().get() : nullptr; } int32_t ProxyPort() const { return mProxyInfo ? mProxyInfo->Port() : -1; } const char *ProxyType() const { return mProxyInfo ? mProxyInfo->Type() : nullptr; } + const char *ProxyUsername() const { return mProxyInfo ? mProxyInfo->Username().get() : nullptr; } + const char *ProxyPassword() const { return mProxyInfo ? mProxyInfo->Password().get() : nullptr; } // Compare this connection info to another... // Two connections are 'equal' if they end up talking the same