networkingtestandutils/ipv6to4tunnel/inc/6to4_family.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 /*
       
     2 * Copyright (c) 2004-2009 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 * Name        : 6to4_family.h
       
    16 * Part of     : 6to4 plugin / 6to4.prt
       
    17 * Implements 6to4 automatic and configured tunnels, see
       
    18 * RFC 3056 & RFC 2893
       
    19 * Version     : 0.2
       
    20 *
       
    21 */
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 /**
       
    27  @internalComponent
       
    28 */
       
    29 
       
    30 
       
    31 #ifndef __6TO4_FAMILY_H
       
    32 #define __6TO4_FAMILY_H
       
    33 
       
    34 //  INCLUDES
       
    35 // CONSTANTS
       
    36 const TUint16 KAf6to4 = 0x624;
       
    37 const TUint16 KProtocol6to4 = 0xfb5;    // likewise
       
    38 
       
    39 // MACROS
       
    40 // DATA TYPES
       
    41 enum T6to4Panic
       
    42 	{
       
    43 	E6to4Panic_BadBind,
       
    44 	E6to4Panic_NotSupported
       
    45 	};
       
    46 
       
    47 // FUNCTION PROTOTYPES
       
    48 void Panic (T6to4Panic aPanic);
       
    49 
       
    50 // FORWARD DECLARATIONS
       
    51 // CLASS DECLARATION
       
    52 
       
    53 #endif      // __6TO4_FAMILY_H   
       
    54 			
       
    55 // End of File