Bumping manifests a=b2g-bump
[gecko.git] / netwerk / socket / nsSOCKS4SocketProvider.h
blobd6667e8c145650e183a2dd9f8d8c18415ea1f62b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef _NSSOCKS4SOCKETPROVIDER_H_
8 #define _NSSOCKS4SOCKETPROVIDER_H_
10 #include "nsISOCKS4SocketProvider.h"
12 /* F7C9F5F4-4451-41c3-A28A-5BA2447FBACE */
13 #define NS_SOCKS4SOCKETPROVIDER_CID { 0xf7c9f5f4, 0x4451, 0x41c3, { 0xa2, 0x8a, 0x5b, 0xa2, 0x44, 0x7f, 0xba, 0xce } }
15 class nsSOCKS4SocketProvider : public nsISOCKS4SocketProvider
17 public:
18 NS_DECL_ISUPPORTS
19 NS_DECL_NSISOCKETPROVIDER
20 NS_DECL_NSISOCKS4SOCKETPROVIDER
22 // nsSOCKS4SocketProvider methods:
23 nsSOCKS4SocketProvider();
24 virtual ~nsSOCKS4SocketProvider();
26 static NS_METHOD
27 Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
29 nsresult Init();
31 protected:
34 #endif /* _NSSOCKS4SOCKETPROVIDER_H_ */