tor-browser

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

nsUDPSocketProvider.h (520B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 #ifndef nsUDPSocketProvider_h__
      6 #define nsUDPSocketProvider_h__
      7 
      8 #include "nsISocketProvider.h"
      9 
     10 class nsUDPSocketProvider final : public nsISocketProvider {
     11 public:
     12  NS_DECL_THREADSAFE_ISUPPORTS
     13  NS_DECL_NSISOCKETPROVIDER
     14 
     15 private:
     16  ~nsUDPSocketProvider() = default;
     17 };
     18 
     19 #endif /* nsUDPSocketProvider_h__ */