nsUDPSocketProvider.h 548 B

123456789101112131415161718192021222324
  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. #ifndef nsUDPSocketProvider_h__
  5. #define nsUDPSocketProvider_h__
  6. #include "nsISocketProvider.h"
  7. #include "mozilla/Attributes.h"
  8. class nsUDPSocketProvider final : public nsISocketProvider
  9. {
  10. public:
  11. NS_DECL_THREADSAFE_ISUPPORTS
  12. NS_DECL_NSISOCKETPROVIDER
  13. private:
  14. ~nsUDPSocketProvider();
  15. };
  16. #endif /* nsUDPSocketProvider_h__ */