upnp/upnpstack/messagehandler/src/upnpssdphandlerdown.cpp
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     1 /** @file
       
     2 * Copyright (c) 2005-2006 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 "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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "upnpssdphandlerdown.h"
       
    21 #include "upnpssdpserver.h"
       
    22 
       
    23 // -----------------------------------------------------------------------------
       
    24 // CUpnpSsdpHandlerDown::CUpnpSsdpHandlerDown
       
    25 // -----------------------------------------------------------------------------
       
    26 // 
       
    27 CUpnpSsdpHandlerDown::CUpnpSsdpHandlerDown( 
       
    28                                MUpnpSsdpServerObserver& aSsdpServerObserver )
       
    29                                : CUpnpSsdpHandlerBase( aSsdpServerObserver )
       
    30     {
       
    31     // No implementation required
       
    32     }
       
    33 
       
    34 // -----------------------------------------------------------------------------
       
    35 // CUpnpSsdpHandlerDown::CUpnpSsdpHandlerDown
       
    36 // -----------------------------------------------------------------------------
       
    37 // 
       
    38 CUpnpSsdpHandlerDown::~CUpnpSsdpHandlerDown()
       
    39     {
       
    40     }
       
    41 
       
    42 // -----------------------------------------------------------------------------
       
    43 // CUpnpSsdpHandlerDown::CUpnpSsdpHandlerDown
       
    44 // -----------------------------------------------------------------------------
       
    45 // 
       
    46 CUpnpSsdpHandlerDown* CUpnpSsdpHandlerDown::NewL( 
       
    47                               MUpnpSsdpServerObserver& aSsdpServerObserver )
       
    48     {
       
    49     CUpnpSsdpHandlerDown* self = new ( ELeave ) 
       
    50                                  CUpnpSsdpHandlerDown( aSsdpServerObserver );
       
    51     CleanupStack::PushL( self );
       
    52     self->ConstructL();
       
    53     CleanupStack::Pop( self );
       
    54     return self;
       
    55     }
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 // CUpnpSsdpHandlerDown::IsStarted
       
    59 // -----------------------------------------------------------------------------
       
    60 // 
       
    61 TBool CUpnpSsdpHandlerDown::IsStarted()
       
    62     {
       
    63     return ETrue;    
       
    64     }
       
    65 
       
    66 // -----------------------------------------------------------------------------
       
    67 // CUpnpSsdpHandlerDown::ConstructL
       
    68 // -----------------------------------------------------------------------------
       
    69 // 
       
    70 void CUpnpSsdpHandlerDown::ConstructL()
       
    71     {
       
    72     }
       
    73 
       
    74 // -----------------------------------------------------------------------------
       
    75 // CUpnpSsdpHandlerDown::StartL
       
    76 // -----------------------------------------------------------------------------
       
    77 // 
       
    78 void CUpnpSsdpHandlerDown::StartL( RSocketServ& /*aServ*/ )
       
    79     {    
       
    80     }
       
    81 
       
    82 // -----------------------------------------------------------------------------
       
    83 // CUpnpSsdpHandlerDown::Stop
       
    84 // -----------------------------------------------------------------------------
       
    85 //     
       
    86 void CUpnpSsdpHandlerDown::Stop()
       
    87     {    
       
    88     }
       
    89 
       
    90 // -----------------------------------------------------------------------------
       
    91 // CUpnpSsdpHandlerDown::AddressChangeL
       
    92 // -----------------------------------------------------------------------------
       
    93 //     
       
    94 void CUpnpSsdpHandlerDown::AddressChangeL( TInetAddr& /*aAddress*/ )
       
    95     {
       
    96     }
       
    97     
       
    98 // -----------------------------------------------------------------------------
       
    99 // CUpnpSsdpHandlerDown::SsdpSearchL
       
   100 // -----------------------------------------------------------------------------
       
   101 // 
       
   102 void CUpnpSsdpHandlerDown::SsdpSearchL( const TDesC8& /*aSearchString*/, TDesC8& /*aMX*/ )
       
   103     {    
       
   104     }
       
   105 
       
   106 // -----------------------------------------------------------------------------
       
   107 // CUpnpSsdpHandlerDown::AdvertiseDeviceL
       
   108 // -----------------------------------------------------------------------------
       
   109 // 
       
   110 void CUpnpSsdpHandlerDown::AdvertiseDeviceL( TInt /*aLive*/,  CUpnpDeviceLibraryElement& /*aElement*/ )
       
   111     {    
       
   112     }
       
   113 
       
   114 
       
   115 // End of File