--- a/epoc32/include/ipaddr.h Tue Nov 24 13:55:44 2009 +0000
+++ b/epoc32/include/ipaddr.h Tue Mar 16 16:12:26 2010 +0000
@@ -1,1 +1,63 @@
-ipaddr.h
+// Copyright (c) 2003-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:
+//
+
+#ifndef CIPADDRESS___
+#define CIPADDRESS___
+
+#include <in_sock.h>
+
+/** Size of CIpAddress buffer. */
+const TInt KIpAddressSize = 39; // large enough for full IPv6 address = 39 (8 * 4 + 7)
+
+class CIpAddress : public CBase
+/** Utility class to hold an IP address as a string on the heap.
+
+This can be useful for parsers that have IP address fields.
+@publishedAll
+@released
+*/
+ {
+ public:
+ IMPORT_C static CIpAddress* NewL(const TDesC& aAddr);
+ IMPORT_C static CIpAddress* NewLC(const TDesC& aAddr);
+ inline static CIpAddress* NewL();
+ inline static CIpAddress* NewLC();
+ IMPORT_C ~CIpAddress();
+ IMPORT_C void SetAddrL(const TDesC& aAddr);
+ IMPORT_C const TDesC& Addr() const;
+ private:
+ CIpAddress();
+ private:
+ HBufC* iAddr;
+ };
+
+inline CIpAddress* CIpAddress::NewL()
+/** Allocates and constructs a new empty IP address object.
+
+@return New IP address object */
+ {
+ return NewL(KNullDesC);
+ }
+
+inline CIpAddress* CIpAddress::NewLC()
+/** Allocates and constructs a new empty IP address object, leaving the object
+on the cleanup stack.
+
+@return New IP address object */
+ {
+ return NewLC(KNullDesC);
+ }
+
+#endif