diff -r 000000000000 -r 6474c204b198 netwerk/base/src/nsProxyInfo.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/netwerk/base/src/nsProxyInfo.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,73 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim:set ts=2 sw=2 sts=2 et cindent: */ +/* 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/. */ + +#ifndef nsProxyInfo_h__ +#define nsProxyInfo_h__ + +#include "nsIProxyInfo.h" +#include "nsString.h" +#include "mozilla/Attributes.h" + +// Use to support QI nsIProxyInfo to nsProxyInfo +#define NS_PROXYINFO_IID \ +{ /* ed42f751-825e-4cc2-abeb-3670711a8b85 */ \ + 0xed42f751, \ + 0x825e, \ + 0x4cc2, \ + {0xab, 0xeb, 0x36, 0x70, 0x71, 0x1a, 0x8b, 0x85} \ +} + +// This class is exposed to other classes inside Necko for fast access +// to the nsIProxyInfo attributes. +class nsProxyInfo MOZ_FINAL : public nsIProxyInfo +{ +public: + NS_DECLARE_STATIC_IID_ACCESSOR(NS_PROXYINFO_IID) + + NS_DECL_THREADSAFE_ISUPPORTS + NS_DECL_NSIPROXYINFO + + // Cheap accessors for use within Necko + const nsCString &Host() { return mHost; } + int32_t Port() { return mPort; } + const char *Type() { return mType; } + uint32_t Flags() { return mFlags; } + + bool IsDirect(); + bool IsHTTP(); + bool IsSOCKS(); + +private: + friend class nsProtocolProxyService; + + nsProxyInfo(const char *type = nullptr) + : mType(type) + , mPort(-1) + , mFlags(0) + , mResolveFlags(0) + , mTimeout(UINT32_MAX) + , mNext(nullptr) + {} + + ~nsProxyInfo() + { + NS_IF_RELEASE(mNext); + } + + const char *mType; // pointer to statically allocated value + nsCString mHost; + nsCString mUsername; + nsCString mPassword; + int32_t mPort; + uint32_t mFlags; + uint32_t mResolveFlags; + uint32_t mTimeout; + nsProxyInfo *mNext; +}; + +NS_DEFINE_STATIC_IID_ACCESSOR(nsProxyInfo, NS_PROXYINFO_IID) + +#endif // nsProxyInfo_h__