tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

FuzzySocketControl.h (777B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef FuzzySocketControl_h__
      8 #define FuzzySocketControl_h__
      9 
     10 #include "nsITLSSocketControl.h"
     11 
     12 namespace mozilla {
     13 namespace net {
     14 
     15 class FuzzySocketControl final : public nsITLSSocketControl {
     16 public:
     17  FuzzySocketControl();
     18 
     19  NS_DECL_THREADSAFE_ISUPPORTS
     20  NS_DECL_NSITLSSOCKETCONTROL
     21 
     22 protected:
     23  virtual ~FuzzySocketControl();
     24 };  // class FuzzySocketControl
     25 
     26 }  // namespace net
     27 }  // namespace mozilla
     28 
     29 #endif  // FuzzySocketControl_h__