#ifndef __IF_TRNSTAT_LOADED #define __IF_TRNSTAT_LOADED 1 /**************************************************************************** ** ** - Structures providing a packet transport mechanism ** ***************************************************************************** ** Header is nonstandard ***************************************************************************** ** ** Copyright 2003 Hewlett-Packard Development Company, L.P. ** ** Confidential computer software. Valid license from HP and/or ** its subsidiaries required for possession, use, or copying. ** ** Consistent with FAR 12.211 and 12.212, Commercial Computer Software, ** Computer Software Documentation, and Technical Data for Commercial ** Items are licensed to the U.S. Government under vendor's standard ** commercial license. ** ** Neither HP nor any of its subsidiaries shall be liable for technical ** or editorial errors or omissions contained herein. The information ** in this document is provided "as is" without warranty of any kind and ** is subject to change without notice. The warranties for HP products ** are set forth in the express limited warranty statements accompanying ** such products. Nothing herein should be construed as constituting an ** additional warranty. ** ***************************************************************************** ** ** Copyright (c) 1982, 1993 Regents of the University of California. ** All rights reserved. The Berkeley software License Agreement ** specifies the terms and conditions for redistribution. ** ** if.h 8.1 (Berkeley) 6/10/93 ** ****************************************************************************** */ #pragma __nostandard #include #ifdef __cplusplus extern "C" { #endif #include #if __INITIAL_POINTER_SIZE # pragma __pointer_size __save # pragma __pointer_size 32 #endif /* ** All structures should be member aligned on natural boundaries */ #pragma __member_alignment __save #pragma __member_alignment /* ** External model of relaxed refdef */ #pragma __extern_model __save #pragma __extern_model __relaxed_refdef /* * Token Ring characteristics. */ struct trnchar { __u_char mac_addr[6]; /* The mac address */ __u_char grp_addr[6]; /* Group address */ __u_char func_addr[6]; /* Functional address */ __u_short drop_numb; /* Physical drop number */ __u_char upstream_nbr[6]; /* Upstream neighbor */ __u_short upstream_drop_numb; /* Upstream drop number */ __u_short transmit_access_pri; /* Trasmit access priority */ __u_short last_major_vector; /* Last major vector */ __u_short ring_status; /* Ring status */ __u_short interface_state; /* State of the interface*/ __u_short monitor_contd; /* monitor contender */ __u_short soft_error_timer; /* Soft error timer value */ __u_short ring_number; /* Local ring number */ __u_short monitor_error_code; /* Monitor error code */ __u_short beacon_receive_type; /* Type of beacon received */ __u_short beacon_transmit_type; /* Type of beacon transmitted */ __u_char beacon_una[6]; /* UNA of the beaconing station */ __u_short beacon_stn_drop_numb; /* Drop number of the beacon station */ __u_short ring_speed; /* The ring speed */ __u_short etr; /* Early token release */ __u_short open_status; /* Open status */ __u_char token_ring_chip[16]; /* type of chip */ }; /* * Definitions for the Major Vector commands * See page 2-30 of the TMS380 book */ #define MV_RESPONSE 0x00 #define MV_BEACON 0x02 #define MV_CLAIM_TOKEN 0x03 #define MV_RING_PURGE 0x04 #define MV_ACTIVE_MON_PRES 0x05 #define MV_STANDBY_MON_PRES 0x06 #define MV_DUP_ADDR_TEST 0x07 #define MV_LOBE_MEDIA_TEST 0x08 #define MV_TRANSMIT_FORW 0x09 #define MV_RMV_RING_STATION 0x0B #define MV_CHANGE_PARM 0x0C #define MV_INIT_RING_STN 0x0D #define MV_REQ_STN_ADDR 0x0E #define MV_REQ_STN_STATE 0x0F #define MV_REQ_STN_ATTACH 0x10 #define MV_REQ_INIT 0x20 #define MV_REPORT_STN_ADDR 0x22 #define MV_REPORT_STN_STATE 0x23 #define MV_REPORT_STN_ATTACH 0x24 #define MV_REPORT_NEW_MONITOR 0x25 #define MV_REPORT_SUA_CHANGE 0x26 #define MV_REPORT_RNG_POLL_FAIL 0x27 #define MV_REPORT_MONTIOR_ERR 0x28 #define MV_REPORT_ERR 0x29 #define MV_REPORT_TRANSMIT_FORW 0x2A /* * Definitions for the beacon types * See page 2-56 of the TMS380 book */ #define BT_SET_RECOV_MODE 0x01 #define BT_SET_SIGNAL_LOSS 0x02 #define BT_SET_BIT_STREAMING 0x03 #define BT_SET_CONT_STREAMING 0x04 /* * Definitions for the Monitor Error Code. * See page 2-47 of the TMS380 book */ #define M_NO_ERROR 0x0000 #define M_MON_ERROR 0x0001 #define M_DUPLICATE_MON 0x0002 #define M_DUPLICATE_ADDR 0x0003 /* * Token Ring counters */ struct trncount { __u_long trn_second; /* seconds since last zeroed */ __u_long trn_bytercvd; /* bytes received */ __u_long trn_bytesent; /* bytes sent */ __u_long trn_pdurcvd; /* data blocks received */ __u_long trn_pdusent; /* data blocks sent */ __u_long trn_mbytercvd; /* multicast bytes received */ __u_long trn_mpdurcvd; /* multicast blocks received */ __u_long trn_mbytesent; /* multicast bytes sent */ __u_long trn_mpdusent; /* multicast blocks sent */ __u_long trn_pduunrecog; /* frame unrecognized */ __u_long trn_mpduunrecog; /* multicast frame unrecognized */ __u_short trn_nosysbuf; /* system buffer unavailable */ __u_short trn_xmit_fail; /* xmit failures */ __u_short trn_xmit_underrun; /* xmit underruns */ __u_short trn_line_error; /* Line errors */ __u_short trn_internal_error; /* recoverable internal errors */ __u_short trn_burst_error; /* Burst error */ __u_short trn_ari_fci_error; /* ARI/FCI error */ __u_short trn_ad_trans; /* Abort delimiters transmitted */ __u_short trn_lost_frame_error; /* Lost frame error */ __u_short trn_rcv_congestion_error;/* receive overrun (or congestion) */ __u_short trn_frame_copied_error; /* Frame copied error */ __u_short trn_frequency_error; /* Frequency error */ __u_short trn_token_error; /* Token error */ __u_short trn_hard_error; /* Hard errors */ __u_short trn_soft_error; /* Soft errors */ __u_short trn_adapter_reset; /* Resets performed */ __u_short trn_signal_loss; /* Signal loss */ __u_short trn_xmit_beacon; /* Beacons transmitted */ __u_short trn_ring_recovery; /* Ring recoverys received */ __u_short trn_lobe_wire_fault; /* Lobe faults detected */ __u_short trn_remove_received; /* Remove received */ __u_short trn_single_station; /* # of times host was single */ __u_short trn_selftest_fail; /* # of times selftest failed */ }; /* * Token Ring RFC 1231 definitions. */ struct dot5Entry { int dot5TrnNumber; int dot5IfIndex; int dot5Commands; int dot5RingStatus; int dot5RingState; int dot5RingOpenStatus; int dot5RingSpeed; __u_char dot5UpStream[6]; int dot5ActMonParticipate; __u_char dot5Functional[6]; }; /* Values for dot5Commands */ #define MIB1231_COMM_NO_OP 1 #define MIB1231_COMM_OPEN 2 #define MIB1231_COMM_RESET 3 #define MIB1231_COMM_CLOSE 4 /* Values for dot5RingStatus */ #define MIB1231_RSTATUS_NO_PROB 0x0000 #define MIB1231_RSTATUS_RING_RECOVERY 0x0020 /* 32 */ #define MIB1231_RSTATUS_SINGLE_STATION 0x0040 /* 64 */ #define MIB1231_RSTATUS_REMOVE_RCVD 0x0100 /* 256 */ #define MIB1231_RSTATUS_RESERVED 0x0200 /* 512 */ #define MIB1231_RSTATUS_AUTO_REM_ERROR 0x0400 /* 1024 */ #define MIB1231_RSTATUS_LOBE_WIRE_FAULT 0x0800 /* 2048 */ #define MIB1231_RSTATUS_TRANSMIT_BEACON 0x1000 /* 4096 */ #define MIB1231_RSTATUS_SOFT_ERROR 0x2000 /* 8192 */ #define MIB1231_RSTATUS_HARD_ERROR 0x4000 /* 16384 */ #define MIB1231_RSTATUS_SIGNAL_LOSS 0x8000 /* 32768 */ #define MIB1231_RSTATUS_NO_STATUS 0x20000 /* 131072 */ /* Values for dot5RingState */ #define MIB1231_RSTATE_OPENED 1 #define MIB1231_RSTATE_CLOSED 2 #define MIB1231_RSTATE_OPENING 3 #define MIB1231_RSTATE_CLOSING 4 #define MIB1231_RSTATE_OPEN_FAILURE 5 #define MIB1231_RSTATE_RING_FAILURE 6 /* Values for dot5RingStatus */ #define MIB1231_ROSTATUS_NOOPEN 1 #define MIB1231_ROSTATUS_BADPARM 2 #define MIB1231_ROSTATUS_LOBEFAILED 3 #define MIB1231_ROSTATUS_SIG_LOSS 4 #define MIB1231_ROSTATUS_INS_TIMEOUT 5 #define MIB1231_ROSTATUS_RING_FAILED 6 #define MIB1231_ROSTATUS_BEACONING 7 #define MIB1231_ROSTATUS_DUPLICATE_MAC 8 #define MIB1231_ROSTATUS_REQ_FAILED 9 #define MIB1231_ROSTATUS_REM_RECVD 10 #define MIB1231_ROSTATUS_OPEN 11 /* Values for dot5RingSpeed */ #define MIB1231_RSPEED_UNKNOWN 1 #define MIB1231_RSPEED_1_MEG 2 #define MIB1231_RSPEED_4_MEG 3 #define MIB1231_RSPEED_16_MEG 4 /* Values for dot5ActMonParticipate */ #define MIB1231_ACTMON_TRUE 1 #define MIB1231_ACTMON_FALSE 2 /* The statistics table */ struct dot5StatsEntry { int dot5StatsIfIndex; int dot5StatsLineErrors; int dot5StatsBurstErrors; int dot5StatsACErrors; int dot5StatsAbortTransErrors; int dot5StatsInternalErrors; int dot5StatsLostFrameErrors; int dot5StatsReceiveCongestions; int dot5StatsFrameCopiedErrors; int dot5StatsTokenErrors; int dot5StatsSoftErrors; int dot5StatsHardErrors; int dot5StatsSignalLoss; int dot5StatsTransmitBeacons; int dot5StatsRecoverys; int dot5StatsLobeWires; int dot5StatsRemoves; int dot5StatsSingles; int dot5StatsFreqErrors; }; /* The timer table - optional */ struct dot5TimerEntry { int dot5TimerIfIndex; int dot5TimerReturnRepeat; int dot5TimerHolding; int dot5TimerQueuePDU; int dot5TimerValidTransmit; int dot5TimerNoToken; int dot5TimerActiveMon; int dot5TimerStandbyMon; int dot5TimerErrorReport; int dot5TimerBeaconTransmit; int dot5TimerBeaconReceive; }; /* ** Restore the users pointer context */ #if __INITIAL_POINTER_SIZE # pragma __pointer_size __restore #endif #ifdef __cplusplus } #endif #pragma __member_alignment __restore #pragma __extern_model __restore #pragma __standard #endif /* __IF_TRNSTAT_LOADED */