epoc32/include/ipaddr.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
permissions -rw-r--r--
Final list of Symbian^2 public API header files

// 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