tcpiputils/tun/inc/tun.pan
branchRCL_3
changeset 63 425d8f4f7fa5
equal deleted inserted replaced
58:8d540f55e491 63:425d8f4f7fa5
       
     1 // Copyright (c) 2010 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 
       
    18  @internalComponent
       
    19 */
       
    20 
       
    21 
       
    22 #ifndef __TUN_PAN__
       
    23 #define __TUN_PAN__
       
    24 
       
    25 //  Data Types
       
    26 enum TTunPanic
       
    27     {
       
    28     ETunPanic_BadBind,
       
    29     ETunPanic_BadHeader,
       
    30     ETunPanic_BadCall,
       
    31     ETunPanic_CorruptPacketIn
       
    32     };
       
    33 
       
    34 //  Function Prototypes
       
    35 GLREF_C void Panic(TTunPanic aPanic);
       
    36 
       
    37 #endif  // __TUN_PAN__
       
    38