tor-browser

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

nsSSLSocketProvider.h (814B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
      2 *
      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 _NSSSLSOCKETPROVIDER_H_
      8 #define _NSSSLSOCKETPROVIDER_H_
      9 
     10 #include "nsISocketProvider.h"
     11 
     12 /* 217d014a-1dd2-11b2-999c-b0c4df79b324 */
     13 #define NS_SSLSOCKETPROVIDER_CID \
     14  {0x217d014a, 0x1dd2, 0x11b2, {0x99, 0x9c, 0xb0, 0xc4, 0xdf, 0x79, 0xb3, 0x24}}
     15 
     16 class nsSSLSocketProvider : public nsISocketProvider {
     17 public:
     18  NS_DECL_THREADSAFE_ISUPPORTS
     19  NS_DECL_NSISOCKETPROVIDER
     20 
     21  // nsSSLSocketProvider methods:
     22  nsSSLSocketProvider();
     23 
     24 protected:
     25  virtual ~nsSSLSocketProvider();
     26 };
     27 
     28 #endif /* _NSSSLSOCKETPROVIDER_H_ */