michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef _NSSOCKS4SOCKETPROVIDER_H_ michael@0: #define _NSSOCKS4SOCKETPROVIDER_H_ michael@0: michael@0: #include "nsISOCKS4SocketProvider.h" michael@0: michael@0: /* F7C9F5F4-4451-41c3-A28A-5BA2447FBACE */ michael@0: #define NS_SOCKS4SOCKETPROVIDER_CID { 0xf7c9f5f4, 0x4451, 0x41c3, { 0xa2, 0x8a, 0x5b, 0xa2, 0x44, 0x7f, 0xba, 0xce } } michael@0: michael@0: class nsSOCKS4SocketProvider : public nsISOCKS4SocketProvider michael@0: { michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSISOCKETPROVIDER michael@0: NS_DECL_NSISOCKS4SOCKETPROVIDER michael@0: michael@0: // nsSOCKS4SocketProvider methods: michael@0: nsSOCKS4SocketProvider(); michael@0: virtual ~nsSOCKS4SocketProvider(); michael@0: michael@0: static NS_METHOD michael@0: Create(nsISupports *aOuter, REFNSIID aIID, void **aResult); michael@0: michael@0: nsresult Init(); michael@0: michael@0: protected: michael@0: }; michael@0: michael@0: #endif /* _NSSOCKS4SOCKETPROVIDER_H_ */