michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 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 _NSTLSSOCKETPROVIDER_H_ michael@0: #define _NSTLSSOCKETPROVIDER_H_ michael@0: michael@0: #include "nsISocketProvider.h" michael@0: michael@0: michael@0: #define NS_STARTTLSSOCKETPROVIDER_CID \ michael@0: { /* b9507aec-1dd1-11b2-8cd5-c48ee0c50307 */ \ michael@0: 0xb9507aec, \ michael@0: 0x1dd1, \ michael@0: 0x11b2, \ michael@0: {0x8c, 0xd5, 0xc4, 0x8e, 0xe0, 0xc5, 0x03, 0x07} \ michael@0: } michael@0: michael@0: class nsTLSSocketProvider : public nsISocketProvider michael@0: { michael@0: public: michael@0: NS_DECL_THREADSAFE_ISUPPORTS michael@0: NS_DECL_NSISOCKETPROVIDER michael@0: michael@0: // nsTLSSocketProvider methods: michael@0: nsTLSSocketProvider(); michael@0: virtual ~nsTLSSocketProvider(); michael@0: }; michael@0: michael@0: #endif /* _NSTLSSOCKETPROVIDER_H_ */