First public contribution.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #ifndef __OCSPSUPPORT_TRANSPORT_H__
27 #define __OCSPSUPPORT_TRANSPORT_H__
30 #include "ocspsupport.h"
32 // file duplicated from \\swi\\inc
37 * This class is a transport used by OCSP. This transport uses client/server framework
38 * to make the request in a separate process and marshalls the data between the processes.
39 * This allows SWIS to use OCSP, which uses HTTP, which cannot be used directly from
42 class COcspSupportTransport : public CBase, public MOCSPTransport
45 IMPORT_C static COcspSupportTransport* NewL(TUint32& aIap);
46 IMPORT_C static COcspSupportTransport* NewLC(TUint32& aIap);
48 // from MOCSPTransport
49 void SendRequest (const TDesC8 &aURI, const TDesC8 &aRequest, const TInt aTimeout, TRequestStatus &aStatus);
50 void CancelRequest ();
51 TPtrC8 GetResponse () const;
53 ~COcspSupportTransport();
55 COcspSupportTransport(TUint32& aIap);
58 /// Handle to the server, used to forward the requests.
59 ROcspHandler iOcspHandler;
62 mutable HBufC8* iResultData; // needs to be mutable due to MOCSPTransport interface dfn
69 #endif //#ifndef __OCSPSUPPORT_TRANSPORT_H__