upnp/upnpstack/upnpconnmanager/inc/upnpconnmanagercommon.h
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     1 /** @file
       
     2 * Copyright (c) 2008 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:  Connection manager / common definitions for cliet and server
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef T_UPNPCONNECTIONMANAGERCOMMON_H
       
    19 #define T_UPNPCONNECTIONMANAGERCOMMON_H
       
    20 
       
    21 #include "upnpcompvariant.hrh"
       
    22 #include "upnpconnmanagereventtypes.h"
       
    23 #include <in_sock.h> 
       
    24 
       
    25 // the name of the server, used by client
       
    26 _LIT( KUpnpConnectionManagerFilename, "upnpconnmanager" );
       
    27 
       
    28 //server's name
       
    29 _LIT( KUpnpConnectionManagerName, "upnpconnectionmanager" );
       
    30 _LIT( KUpnpConnectionManagerThreadName, "upnpconnectionmanager_MainThread" );
       
    31 
       
    32 const TUid KServerUid3 = { 0x2001B2BB };
       
    33 
       
    34 // the server version
       
    35 // A version must be specified when creating a session with the server
       
    36 const TUint KUpnpConnectionManagerMajorVersionNumber = 0;
       
    37 const TUint KUpnpConnectionManagerMinorVersionNumber = 1;
       
    38 const TUint KUpnpConnectionManagerBuildVersionNumber = 1;
       
    39 const TInt KNetworkEventSlot = 0;
       
    40 
       
    41 #endif  // T_UPNPCONNECTIONMANAGERCOMMON_H
       
    42