2012-05-21 11:12:37 +00: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 06:07:26 +00:00
|
|
|
|
|
|
|
#ifndef nsUDPSocketProvider_h__
|
|
|
|
#define nsUDPSocketProvider_h__
|
|
|
|
|
|
|
|
#include "nsISocketProvider.h"
|
2012-06-06 03:18:25 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-05-31 06:07:26 +00:00
|
|
|
|
2012-06-06 03:18:25 +00:00
|
|
|
class nsUDPSocketProvider MOZ_FINAL : public nsISocketProvider
|
2007-05-31 06:07:26 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 02:24:13 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2007-05-31 06:07:26 +00:00
|
|
|
NS_DECL_NSISOCKETPROVIDER
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsUDPSocketProvider();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsUDPSocketProvider_h__ */
|
|
|
|
|