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