diff -r 000000000000 -r dfb7c4ff071f datacommsserver/esockserver/inc/es_enum_internal.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/datacommsserver/esockserver/inc/es_enum_internal.h Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,96 @@ +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + + +/** + @file +*/ + +#if !defined (__ES_ENUM_INTERNAL_H__) +#define __ES_ENUM_INTERNAL_H__ + +#include +#include + +class TConnProviderInfo : public TConnArgBase +/** +@internalTechnology +*/ + { +public: + inline TConnProviderInfo() + { + iVersion = KConnArgVersion3; + Mem::FillZ(iInfo,sizeof(iInfo)); + } + +public: + TUint32 iInfo[5]; + }; + +/** +@internalTechnology +*/ +typedef TPckgBuf TInterfaceNotificationBuf; + +/** +@internalComponent +*/ +typedef TPckgBuf TConnEnumArgBuf; + +/** +@internalComponent +*/ +typedef TPckgBuf TConnGetClientInfoArgBuf; + +class TConnectionSocketInfo +/** +@internalComponent +*/ + { +public: + inline TConnectionSocketInfo(); +public: + TUint iAddressFamily; + TUint iProtocol; + TSockAddr iSourceAddress; + TSockAddr iDestinationAddress; + }; + +class TConnectionGetSocketInfoArg : public TConnArgBase +/** +for KCoGetConnectionSocketInfo + +@internalComponent +*/ + { +public: + TConnectionGetSocketInfoArg(); +public: + TUint iIndex; + TConnectionSocketInfo iSocketInfo; + }; + +/** +@internalComponent +*/ +typedef TPckgBuf TConnGetSocketInfoArgBuf; + + + +#include + +#endif // __ES_ENUM_INTERNAL_H__ +