pushmtm/MtmUtilSrc/PushAuthenticationUtilitiesPure.cpp
branchRCL_3
changeset 65 8e6fa1719340
parent 0 84ad3b177aa3
equal deleted inserted replaced
64:6385c4c93049 65:8e6fa1719340
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Authentication utilities not using White List.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 
       
    22 #include "PushAuthenticationUtilities.h"
       
    23 #include "PushMtmUtilPanic.h"
       
    24 #include "PushMtmLog.h"
       
    25 
       
    26 // ================= MEMBER FUNCTIONS =======================
       
    27 
       
    28 // ---------------------------------------------------------
       
    29 // TPushAuthenticationUtil::AuthenticateMsgL
       
    30 // ---------------------------------------------------------
       
    31 //
       
    32 EXPORT_C TBool TPushAuthenticationUtil::AuthenticateMsgL
       
    33 										( 
       
    34 										const CPushMtmSettings& /*aMtmSettings*/, 
       
    35 										const CPushMessage& /*aPushMsg*/ 
       
    36 										)
       
    37     {
       
    38     PUSHLOG_ENTERFN("TPushAuthenticationUtil::AuthenticateMsgL")
       
    39     PUSHLOG_WRITE(" Nothing done.")
       
    40     PUSHLOG_LEAVEFN("TPushAuthenticationUtil::AuthenticateMsgL")
       
    41     return ETrue;
       
    42     }
       
    43 
       
    44 // ---------------------------------------------------------
       
    45 // TPushAuthenticationUtil::AuthenticateMsgL
       
    46 // ---------------------------------------------------------
       
    47 //
       
    48 EXPORT_C TBool TPushAuthenticationUtil::AuthenticateMsgL
       
    49 										( 
       
    50 										const CPushMtmSettings& /*aMtmSettings*/, 
       
    51 										const CPushMsgEntryBase& /*aPushMsg*/ 
       
    52 										)
       
    53     {
       
    54     PUSHLOG_ENTERFN("TPushAuthenticationUtil::AuthenticateMsgL 2")
       
    55     PUSHLOG_WRITE(" Nothing done.")
       
    56     PUSHLOG_LEAVEFN("TPushAuthenticationUtil::AuthenticateMsgL 2")
       
    57     return ETrue;
       
    58     }
       
    59 
       
    60 // End of file.