datacommsserver/esockserver/debug/MessageInterceptRegister/src/ESockDebugMessages.cpp
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file ESockDebugMessages.cpp
       
    18 */
       
    19 
       
    20 #include "ESockDebugMessages.h"
       
    21 
       
    22 #include <ss_glob.h>
       
    23 #include <comms-infras/ss_thread.h>
       
    24 #include <ss_std.h>
       
    25 #include <comms-infras/netmessages.h>
       
    26 
       
    27 
       
    28 
       
    29 namespace ESockDebug
       
    30 {
       
    31 
       
    32 namespace MemoryDebug
       
    33 {
       
    34 
       
    35 enum
       
    36 	{
       
    37 	ECheckFailNextMsg = 0,
       
    38 	};
       
    39 
       
    40 EXPORT_C TInt TCheckFailNextMsg::DispatchL(CSockSession* /*aHostSession*/)
       
    41 	{
       
    42 	return KErrNotSupported;
       
    43 	}
       
    44 
       
    45 EXPORT_START_ATTRIBUTE_TABLE_AND_FN(TCheckFailNextMsg, KImplementationUid, ECheckFailNextMsg)
       
    46 END_ATTRIBUTE_TABLE()
       
    47 
       
    48 DEFINE_MVIP_CTR(TCheckFailNextMsg);
       
    49 
       
    50 const TImplementationProxy ImplementationTable[] = 
       
    51 	{
       
    52 	MVIP_CTR_ENTRY(ECheckFailNextMsg, TCheckFailNextMsg),
       
    53 	};
       
    54 
       
    55 EXPORT_C TInt ImplementationProxyTableSize()
       
    56 	{
       
    57 	return (sizeof(ImplementationTable) / sizeof(ImplementationTable[0]));
       
    58 	};
       
    59 
       
    60 EXPORT_C const TImplementationProxy* ImplementationProxyTable()
       
    61 	{
       
    62 	return ImplementationTable;
       
    63 	};
       
    64 
       
    65 }	// namespace ESockDebug::MemoryDebug
       
    66 
       
    67 
       
    68 
       
    69 }	// namespace ESockDebug
       
    70