2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2007-05-31 10:07:26 +04:00
|
|
|
|
|
|
|
#ifndef nsUDPSocketProvider_h__
|
|
|
|
#define nsUDPSocketProvider_h__
|
|
|
|
|
|
|
|
#include "nsISocketProvider.h"
|
2012-06-06 07:18:25 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-05-31 10:07:26 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsUDPSocketProvider final : public nsISocketProvider
|
2007-05-31 10:07:26 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 06:24:13 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2007-05-31 10:07:26 +04:00
|
|
|
NS_DECL_NSISOCKETPROVIDER
|
|
|
|
|
|
|
|
private:
|
2018-04-30 19:46:04 +03:00
|
|
|
~nsUDPSocketProvider() = default;
|
2007-05-31 10:07:26 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsUDPSocketProvider_h__ */
|
|
|
|
|