linklayerprotocols/ethernetnif/INC/pktdrv_internal.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 1997-2009 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 pktdrv_internal.h
       
    18  @internalAll
       
    19  @released 
       
    20 */
       
    21 
       
    22 
       
    23 #if !defined(__PKTDRV__INTERNAL_H__)
       
    24 #define __PKTDRV__INTERNAL_H__
       
    25 #include <networking/pktdrv.h>
       
    26 /**
       
    27 Uid3 for Irlan pkt drv
       
    28 @internalAll
       
    29 */
       
    30 const TInt KUidIrlanNifmanPktDrv	= 0x10000540; 
       
    31 
       
    32 /**
       
    33 @internalComponent
       
    34 @note No-one uses this - seems to be a hangover from ER5u version
       
    35 */
       
    36 const TInt KLinkLayerUp		=	1;  //< Notify reasons
       
    37 
       
    38 
       
    39 /**
       
    40 @internalComponent
       
    41 */
       
    42 enum TIeee802AddrPanics
       
    43 {
       
    44 	EIeee802AddrBadDescriptor,
       
    45 	EIeee802AddrBadTInt64,
       
    46 	EIeee802AddrBadMBuf
       
    47 };
       
    48 
       
    49 
       
    50 /**
       
    51 @internalTechnology
       
    52 */
       
    53 typedef ESock::CRefCountOwner<CPktDrvFactory> CPacketDriverOwner;
       
    54 
       
    55 GLREF_C void Panic(TIeee802AddrPanics aCode);
       
    56 
       
    57 #endif
       
    58 
       
    59 
       
    60 
       
    61