epoc32/include/http/mhttpdataoptimiser.h
branchSymbian2
changeset 2 2fe1408b6811
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/epoc32/include/http/mhttpdataoptimiser.h	Tue Mar 16 16:12:26 2010 +0000
@@ -0,0 +1,55 @@
+// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+
+
+/**
+ @file mhttpoptimisercallback.h
+ @warning : This file contains Rose Model ID comments - please do not delete
+*/
+
+#ifndef	__MHTTPDATAOPTIMISER_H__
+#define	__MHTTPDATAOPTIMISER_H__
+
+
+//@publishedPartner
+//@released
+class MHttpDataOptimiser
+{
+	public:
+	/**
+	This method converts the HTTP message data to the proprietary protocol format. 
+	It is the responsibility of the implementation to allocate the required buffer for the encoded data. 
+	It is the responsibility of the caller to free the allocated memory.
+	@param	aHTTPData Contains the message data in HTTP format.
+	@param	aEncodedData On return it contains the encoded message data.
+	@leave		KErrNoMemory On insuffcient memory conditions.
+	*/
+	virtual void EncodeL (const TDesC8& aHttpData, HBufC8*& aEncodedData) = 0;
+
+	/**
+	This method converts the data from the proprietary protocol format to the HTTP format. 
+	It is the responsibility of the implementation to allocate the required buffer for the encoded data. 
+	It is the responsibility of the caller to free the allocated memory.
+	@param	aData Is the raw data received over the TCP connection.
+	@param	aHTTPData On return contains the data in HTTP format.
+	@param	aTransFail If set to ETrue, sends the KErrHTTPOptimiserFailsTrans event to the client. 
+	@leave		KErrNoMemory On insuffcient memory conditions.
+	*/
+	virtual void DecodeL (const TDesC8& aData, HBufC8*& aHttpData, TBool& aTransFail) = 0;
+};
+
+
+#endif //	__MHTTPDATAOPTIMISER_H__