mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
82
netwerk/base/nsProxyInfo.h
Normal file
82
netwerk/base/nsProxyInfo.h
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
/* -*- 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} \
|
||||
}
|
||||
|
||||
namespace mozilla {
|
||||
namespace net {
|
||||
|
||||
// This class is exposed to other classes inside Necko for fast access
|
||||
// to the nsIProxyInfo attributes.
|
||||
class nsProxyInfo 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; }
|
||||
const nsCString &Username() { return mUsername; }
|
||||
const nsCString &Password() { return mPassword; }
|
||||
|
||||
bool IsDirect();
|
||||
bool IsHTTP();
|
||||
bool IsHTTPS();
|
||||
bool IsSOCKS();
|
||||
|
||||
private:
|
||||
friend class nsProtocolProxyService;
|
||||
|
||||
explicit 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)
|
||||
|
||||
} // namespace net
|
||||
} // namespace mozilla
|
||||
|
||||
#endif // nsProxyInfo_h__
|
||||
Loading…
Add table
Add a link
Reference in a new issue