亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sdla_chdlc.h

?? 自己做的交叉編譯工具!gcc-3.4.5,glibc-2.3.6在ubuntu8.04上做的面向kernel-2.6.28的交叉編譯工具
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* the line trace status element structure */typedef struct {	unsigned char opp_flag PACKED;			/* opp flag */	unsigned short trace_length PACKED;		/* trace length */	unsigned char trace_type PACKED;		/* trace type */	unsigned short trace_time_stamp PACKED;	/* time stamp */	unsigned short trace_reserved_1 PACKED;	/* reserved for later use */	unsigned long trace_reserved_2 PACKED;		/* reserved for later use */	unsigned long ptr_data_bfr PACKED;		/* ptr to the trace data buffer */} TRACE_STATUS_ELEMENT_STRUCT;/* "trace_type" bit settings */#define TRACE_INCOMING 			0x00#define TRACE_OUTGOINGING 		0x01#define TRACE_INCOMING_ABORTED 		0x10#define TRACE_INCOMING_CRC_ERROR 	0x20#define TRACE_INCOMING_OVERRUN_ERROR 	0x40/* the line trace statistics structure */typedef struct {	unsigned long frames_traced_count PACKED;	/* number of frames traced */	unsigned long trc_frms_not_recorded_count PACKED;	/* number of trace frames discarded */} LINE_TRACE_STATS_STRUCT;/* ---------------------------------------------------------------------------- *               Constants for the FT1_MONITOR_STATUS_CTRL command * --------------------------------------------------------------------------*/#define DISABLE_FT1_STATUS_STATISTICS	0x00    /* disable the FT1 status and statistics monitoring */#define ENABLE_READ_FT1_STATUS		0x01    /* read the FT1 operational status */#define ENABLE_READ_FT1_OP_STATS	0x02    /* read the FT1 operational statistics */#define FLUSH_FT1_OP_STATS		0x04 	/* flush the FT1 operational statistics *//* ---------------------------------------------------------------------------- *               Constants for the SET_CHDLC_CONFIGURATION command * --------------------------------------------------------------------------*//* the CHDLC configuration structure */typedef struct {	unsigned long baud_rate PACKED;		/* the baud rate */		unsigned short line_config_options PACKED;	/* line configuration options */	unsigned short modem_config_options PACKED;	/* modem configration options */	unsigned short modem_status_timer PACKED;	/* timer for monitoring modem status changes */	unsigned short CHDLC_API_options PACKED;	/* CHDLC API options */	unsigned short CHDLC_protocol_options PACKED;	/* CHDLC protocol options */	unsigned short percent_data_buffer_for_Tx PACKED;	/* percentage data buffering used for Tx */	unsigned short CHDLC_statistics_options PACKED;	/* CHDLC operational statistics options */	unsigned short max_CHDLC_data_field_length PACKED;	/* the maximum length of the CHDLC Data field */	unsigned short transmit_keepalive_timer PACKED;		/* the transmit keepalive timer */	unsigned short receive_keepalive_timer PACKED;		/* the receive keepalive timer */	unsigned short keepalive_error_tolerance PACKED;	/* the receive keepalive error tolerance */	unsigned short SLARP_request_timer PACKED;		/* the SLARP request timer */	unsigned long IP_address PACKED;			/* the IP address */	unsigned long IP_netmask PACKED;			/* the IP netmask */	unsigned long ptr_shared_mem_info_struct PACKED;	/* a pointer to the shared memory area information structure */	unsigned long ptr_CHDLC_Tx_stat_el_cfg_struct PACKED;	/* a pointer to the transmit status element configuration structure */	unsigned long ptr_CHDLC_Rx_stat_el_cfg_struct PACKED;	/* a pointer to the receive status element configuration structure */} CHDLC_CONFIGURATION_STRUCT;/* settings for the 'line_config_options' */#define INTERFACE_LEVEL_V35					0x0000 /* V.35 interface level */#define INTERFACE_LEVEL_RS232					0x0001 /* RS-232 interface level *//* settings for the 'modem_config_options' */#define DONT_RAISE_DTR_RTS_ON_EN_COMMS		0x0001/* don't automatically raise DTR and RTS when performing an   ENABLE_CHDLC_COMMUNICATIONS command */#define DONT_REPORT_CHG_IN_MODEM_STAT 		0x0002/* don't report changes in modem status to the application *//* bit settings for the 'CHDLC_protocol_options' byte */#define IGNORE_DCD_FOR_LINK_STAT		0x0001/* ignore DCD in determining the CHDLC link status */#define IGNORE_CTS_FOR_LINK_STAT		0x0002/* ignore CTS in determining the CHDLC link status */#define IGNORE_KPALV_FOR_LINK_STAT		0x0004/* ignore keepalive frames in determining the CHDLC link status */ #define SINGLE_TX_BUFFER			0x4000 /* configure a single transmit buffer */#define HDLC_STREAMING_MODE			0x8000/*   settings for the 'CHDLC_statistics_options' */#define CHDLC_TX_DATA_BYTE_COUNT_STAT		0x0001/* record the number of Data bytes transmitted */#define CHDLC_RX_DATA_BYTE_COUNT_STAT		0x0002/* record the number of Data bytes received */#define CHDLC_TX_THROUGHPUT_STAT		0x0004/* compute the Data frame transmit throughput */#define CHDLC_RX_THROUGHPUT_STAT		0x0008/* compute the Data frame receive throughput *//* permitted minimum and maximum values for setting the CHDLC configuration */#define PRI_MAX_BAUD_RATE_S508	2666666 /* PRIMARY   - maximum baud rate (S508) */#define SEC_MAX_BAUD_RATE_S508	258064 	/* SECONDARY - maximum baud rate (S508) */#define PRI_MAX_BAUD_RATE_S514  2750000 /* PRIMARY   - maximum baud rate (S508) */#define SEC_MAX_BAUD_RATE_S514  515625  /* SECONDARY - maximum baud rate (S508) */ #define MIN_MODEM_TIMER	0			/* minimum modem status timer */#define MAX_MODEM_TIMER	5000			/* maximum modem status timer */#define SEC_MAX_NO_DATA_BYTES_IN_FRAME  2048 /* SECONDARY - max length of the CHDLC data field */#define MIN_Tx_KPALV_TIMER	0	  /* minimum transmit keepalive timer */#define MAX_Tx_KPALV_TIMER	60000	  /* maximum transmit keepalive timer */#define DEFAULT_Tx_KPALV_TIMER	10000	  /* default transmit keepalive timer */#define MIN_Rx_KPALV_TIMER	10	  /* minimum receive keepalive timer */#define MAX_Rx_KPALV_TIMER	60000	  /* maximum receive keepalive timer */#define DEFAULT_Rx_KPALV_TIMER	10000	  /* default receive keepalive timer */#define MIN_KPALV_ERR_TOL	1	  /* min kpalv error tolerance count */#define MAX_KPALV_ERR_TOL	20	  /* max kpalv error tolerance count */#define DEFAULT_KPALV_ERR_TOL	3	  /* default value */#define MIN_SLARP_REQ_TIMER	0	  /* min transmit SLARP Request timer */#define MAX_SLARP_REQ_TIMER	60000	  /* max transmit SLARP Request timer */#define DEFAULT_SLARP_REQ_TIMER	0	  /* default value -- no SLARP *//* ---------------------------------------------------------------------------- *             Constants for the READ_CHDLC_LINK_STATUS command * --------------------------------------------------------------------------*//* the CHDLC status structure */typedef struct {	unsigned char CHDLC_link_status PACKED;	/* CHDLC link status */	unsigned char no_Data_frms_for_app PACKED;	/* number of Data frames available for the application */	unsigned char receiver_status PACKED;	/* enabled/disabled */	unsigned char SLARP_state PACKED;	/* internal SLARP state */} CHDLC_LINK_STATUS_STRUCT;/* settings for the 'CHDLC_link_status' variable */#define CHDLC_LINK_INACTIVE		0x00	/* the CHDLC link is inactive */#define CHDLC_LINK_ACTIVE		0x01	/* the CHDLC link is active *//* ---------------------------------------------------------------------------- *           Constants for the READ_CHDLC_OPERATIONAL_STATS command * --------------------------------------------------------------------------*//* the CHDLC operational statistics structure */typedef struct {	/* Data frame transmission statistics */	unsigned long Data_frames_Tx_count PACKED;	/* # of frames transmitted */	unsigned long Data_bytes_Tx_count PACKED; 	/* # of bytes transmitted */	unsigned long Data_Tx_throughput PACKED;	/* transmit throughput */	unsigned long no_ms_for_Data_Tx_thruput_comp PACKED;	/* millisecond time used for the Tx throughput computation */	unsigned long Tx_Data_discard_lgth_err_count PACKED;	/* number of Data frames discarded (length error) */	unsigned long reserved_Data_frm_Tx_stat1 PACKED;	/* reserved for later */	unsigned long reserved_Data_frm_Tx_stat2 PACKED;	/* reserved for later */	unsigned long reserved_Data_frm_Tx_stat3 PACKED;	/* reserved for later */	/* Data frame reception statistics */	unsigned long Data_frames_Rx_count PACKED;	/* number of frames received */	unsigned long Data_bytes_Rx_count PACKED;	/* number of bytes received */	unsigned long Data_Rx_throughput PACKED;	/* receive throughput */	unsigned long no_ms_for_Data_Rx_thruput_comp PACKED;	/* millisecond time used for the Rx throughput computation */	unsigned long Rx_Data_discard_short_count PACKED;	/* received Data frames discarded (too short) */	unsigned long Rx_Data_discard_long_count PACKED;	/* received Data frames discarded (too long) */	unsigned long Rx_Data_discard_inactive_count PACKED;	/* received Data frames discarded (link inactive) */	unsigned long reserved_Data_frm_Rx_stat1 PACKED;	/* reserved for later */	/* SLARP frame transmission/reception statistics */	unsigned long CHDLC_SLARP_REQ_Tx_count PACKED;		/* number of SLARP Request frames transmitted */	unsigned long CHDLC_SLARP_REQ_Rx_count PACKED;		/* number of SLARP Request frames received */	unsigned long CHDLC_SLARP_REPLY_Tx_count PACKED;	/* number of SLARP Reply frames transmitted */	unsigned long CHDLC_SLARP_REPLY_Rx_count PACKED;	/* number of SLARP Reply frames received */	unsigned long CHDLC_SLARP_KPALV_Tx_count PACKED;	/* number of SLARP keepalive frames transmitted */	unsigned long CHDLC_SLARP_KPALV_Rx_count PACKED;	/* number of SLARP keepalive frames received */	unsigned long reserved_SLARP_stat1 PACKED;		/* reserved for later */	unsigned long reserved_SLARP_stat2 PACKED;		/* reserved for later */	/* CDP frame transmission/reception statistics */	unsigned long CHDLC_CDP_Tx_count PACKED;		/* number of CDP frames transmitted */	unsigned long CHDLC_CDP_Rx_count PACKED;		/* number of CDP frames received */	unsigned long reserved_CDP_stat1 PACKED;		/* reserved for later */	unsigned long reserved_CDP_stat2 PACKED;		/* reserved for later */	unsigned long reserved_CDP_stat3 PACKED;		/* reserved for later */	unsigned long reserved_CDP_stat4 PACKED;		/* reserved for later */	unsigned long reserved_CDP_stat5 PACKED;		/* reserved for later */	unsigned long reserved_CDP_stat6 PACKED;		/* reserved for later */	/* Incoming frames with a format error statistics */	unsigned short Rx_frm_incomp_CHDLC_hdr_count PACKED;	/* frames received of with incomplete Cisco HDLC header */	unsigned short Rx_frms_too_long_count PACKED;		/* frames received of excessive length count */	unsigned short Rx_invalid_CHDLC_addr_count PACKED;	/* frames received with an invalid CHDLC address count */	unsigned short Rx_invalid_CHDLC_ctrl_count PACKED;	/* frames received with an invalid CHDLC control field count */	unsigned short Rx_invalid_CHDLC_type_count PACKED;	/* frames received of an invalid CHDLC frame type count */	unsigned short Rx_SLARP_invalid_code_count PACKED;	/* SLARP frame received with an invalid packet code */	unsigned short Rx_SLARP_Reply_bad_IP_addr PACKED;	/* SLARP Reply received - bad IP address */	unsigned short Rx_SLARP_Reply_bad_netmask PACKED;	/* SLARP Reply received - bad netmask */	unsigned long reserved_frm_format_err1 PACKED;		/* reserved for later */	unsigned long reserved_frm_format_err2 PACKED;		/* reserved for later */	unsigned long reserved_frm_format_err3 PACKED;		/* reserved for later */	unsigned long reserved_frm_format_err4 PACKED;		/* reserved for later */	/* CHDLC timeout/retry statistics */	unsigned short SLARP_Rx_keepalive_TO_count PACKED;	/* timeout count for incoming SLARP frames */	unsigned short SLARP_Request_TO_count PACKED;		/* timeout count for SLARP Request frames */	unsigned long To_retry_reserved_stat1 PACKED;		/* reserved for later */	unsigned long To_retry_reserved_stat2 PACKED;		/* reserved for later */	unsigned long To_retry_reserved_stat3 PACKED;		/* reserved for later */	/* CHDLC link active/inactive and loopback statistics */	unsigned short link_active_count PACKED;		/* number of times that the link went active */	unsigned short link_inactive_modem_count PACKED;	/* number of times that the link went inactive (modem failure) */	unsigned short link_inactive_keepalive_count PACKED;	/* number of times that the link went inactive (keepalive failure) */	unsigned short link_looped_count PACKED;		/* link looped count */	unsigned long link_status_reserved_stat1 PACKED;	/* reserved for later use */	unsigned long link_status_reserved_stat2 PACKED;	/* reserved for later use */	/* miscellaneous statistics */	unsigned long reserved_misc_stat1 PACKED;		/* reserved for later */	unsigned long reserved_misc_stat2 PACKED;		/* reserved for later */	unsigned long reserved_misc_stat3 PACKED;		/* reserved for later */	unsigned long reserved_misc_stat4 PACKED;		/* reserved for later */} CHDLC_OPERATIONAL_STATS_STRUCT;/* ---------------------------------------------------------------------------- *                 Constants for using application interrupts * --------------------------------------------------------------------------*//* the structure used for the SET_CHDLC_INTERRUPT_TRIGGERS/READ_CHDLC_INTERRUPT_TRIGGERS command */typedef struct {	unsigned char CHDLC_interrupt_triggers PACKED;	/* CHDLC interrupt trigger configuration */	unsigned char IRQ PACKED;			/* IRQ to be used */	unsigned short interrupt_timer PACKED;		/* interrupt timer */	unsigned short misc_interrupt_bits PACKED;	/* miscellaneous bits */} CHDLC_INT_TRIGGERS_STRUCT;/* 'CHDLC_interrupt_triggers' bit settings */#define APP_INT_ON_RX_FRAME		0x01	/* interrupt on Data frame reception */#define APP_INT_ON_TX_FRAME		0x02	/* interrupt when an Data frame may be transmitted */#define APP_INT_ON_COMMAND_COMPLETE	0x04	/* interrupt when an interface command is complete */#define APP_INT_ON_TIMER		0x08	/* interrupt on a defined millisecond timeout */#define APP_INT_ON_GLOBAL_EXCEP_COND 	0x10	/* interrupt on a global exception condition */#define APP_INT_ON_CHDLC_EXCEP_COND	0x20	/* interrupt on an CHDLC exception condition */#define APP_INT_ON_TRACE_DATA_AVAIL	0x80	/* interrupt when trace data is available *//* interrupt types indicated at 'interrupt_type' byte of the INTERRUPT_INFORMATION_STRUCT */#define NO_APP_INTS_PEND		0x00	/* no interrups are pending */#define RX_APP_INT_PEND			0x01	/* a receive interrupt is pending */#define TX_APP_INT_PEND			0x02	/* a transmit interrupt is pending */#define COMMAND_COMPLETE_APP_INT_PEND	0x04	/* a 'command complete' interrupt is pending */#define TIMER_APP_INT_PEND		0x08	/* a timer interrupt is pending */#define GLOBAL_EXCEP_COND_APP_INT_PEND 	0x10	/* a global exception condition interrupt is pending */#define CHDLC_EXCEP_COND_APP_INT_PEND 	0x20	/* an CHDLC exception condition interrupt is pending */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品久久精品| 国产精品久久久久久户外露出 | 在线播放中文一区| 亚洲免费在线播放| 欧美日韩成人在线| 午夜免费久久看| 精品国产一区久久| 99在线视频精品| 亚洲一二三级电影| 久久美女艺术照精彩视频福利播放| 国产成人午夜99999| 自拍偷在线精品自拍偷无码专区| 97久久精品人人爽人人爽蜜臀| 亚洲精品福利视频网站| 国产视频一区二区在线观看| 亚洲va韩国va欧美va精品| 精品少妇一区二区三区在线播放| 国产91富婆露脸刺激对白| 亚洲国产成人91porn| 久久亚洲精华国产精华液 | 亚洲图片欧美色图| 欧美mv和日韩mv的网站| 欧美视频你懂的| 大胆亚洲人体视频| 午夜成人免费视频| 日韩美女视频一区二区 | 26uuu精品一区二区| 色婷婷综合久久久久中文一区二区| 久久精品国产99国产精品| 在线不卡免费欧美| 国产精品一二三| 肉肉av福利一精品导航| 性做久久久久久免费观看 | 成人性色生活片免费看爆迷你毛片| 久久久久久电影| 成人永久aaa| 中文字幕一区二区三区色视频 | 成人免费视频网站在线观看| www激情久久| 亚洲美女偷拍久久| 91精品黄色片免费大全| 欧美日韩一区高清| 欧美影院一区二区| 一本色道亚洲精品aⅴ| 国产剧情一区二区| 精品一区二区三区欧美| 免费的成人av| 日本vs亚洲vs韩国一区三区 | 欧美精品九九99久久| 成人高清视频在线观看| 成人免费观看视频| 不卡区在线中文字幕| 国产精品综合网| 成人av在线电影| av在线不卡网| 一本久久综合亚洲鲁鲁五月天 | 日韩精品中文字幕一区二区三区 | 国产精品一区二区你懂的| 亚洲一区成人在线| 亚洲第一主播视频| 国产一区视频导航| 国产一区二区三区免费| 久久成人免费网站| 国产精品1区二区.| 99久久精品免费看| 国产女人18毛片水真多成人如厕| 久久精品国产亚洲一区二区三区| 91麻豆精东视频| 五月婷婷综合在线| 国产午夜精品美女毛片视频| 欧美性猛片xxxx免费看久爱| 精品一区二区三区免费播放| 亚洲精品免费在线观看| 久久色在线视频| 欧美片网站yy| 懂色av一区二区三区免费观看| 午夜不卡av在线| 中文字幕一区二区三区av| 在线亚洲高清视频| 国产一区二区视频在线播放| 夜夜操天天操亚洲| 亚洲视频一区在线观看| 亚洲欧洲综合另类在线| 亚洲大片免费看| 国产91高潮流白浆在线麻豆 | 3d成人动漫网站| 国产一区999| 亚洲国产视频一区| 成人免费在线视频观看| 欧美电视剧免费观看| 欧美亚洲精品一区| 丰满少妇在线播放bd日韩电影| 日韩av电影免费观看高清完整版 | 国产精品一区三区| 日韩av在线播放中文字幕| 亚洲精品老司机| 国产日韩欧美激情| 日韩女优av电影| 91极品视觉盛宴| 4438x成人网最大色成网站| 国产精品久久久久婷婷二区次| 一区二区三区四区激情| 国产精品一二三在| 欧美激情综合在线| 日韩视频免费观看高清完整版在线观看 | 亚洲一区免费观看| 国产精品一区二区久久不卡| 欧洲色大大久久| 欧美精品三级日韩久久| 国产精品久久久久久久蜜臀| 黑人巨大精品欧美一区| 色婷婷综合视频在线观看| 亚洲无人区一区| 色网综合在线观看| 亚洲视频免费观看| 欧美三级午夜理伦三级中视频| 久久夜色精品一区| 91国产免费观看| 夜夜操天天操亚洲| 久久久久久久久久久久电影| 国产夫妻精品视频| 亚洲欧美韩国综合色| 丁香一区二区三区| 欧美激情在线观看视频免费| 老司机午夜精品99久久| 国产日韩精品一区二区三区| 国产九色sp调教91| 国产精品理论在线观看| 极品尤物av久久免费看| 久久精品一区蜜桃臀影院| 国产中文字幕一区| 欧美va亚洲va香蕉在线| 欧美午夜在线观看| 一区二区三区四区视频精品免费| 91一区二区三区在线播放| 亚洲欧洲色图综合| 97精品久久久久中文字幕| 亚洲色大成网站www久久九九| 欧美唯美清纯偷拍| 亚洲成av人影院| 欧美精品 国产精品| 青青草国产精品97视觉盛宴| 欧美日韩久久一区| 日本不卡在线视频| 中文字幕va一区二区三区| 99精品在线观看视频| 亚洲国产精品综合小说图片区| 在线日韩av片| av在线不卡观看免费观看| 蜜臀国产一区二区三区在线播放| 日韩欧美一二三区| 91麻豆精品国产91久久久久| 久久成人免费网| 中文字幕av一区 二区| 在线看国产日韩| 秋霞影院一区二区| 国产精品久久久久久久裸模| 国产日韩欧美制服另类| www国产亚洲精品久久麻豆| 久久久久久久久久久久久夜| caoporen国产精品视频| 国产一区二区三区黄视频 | 日韩高清一区在线| 久久只精品国产| 欧美日本国产视频| av激情成人网| 国产一区二区久久| 久久众筹精品私拍模特| 国产三级一区二区三区| 国产亚洲一本大道中文在线| 中文子幕无线码一区tr| 一区二区三区美女视频| 免费一区二区视频| 国产成人av一区二区三区在线 | 国产一区二区三区国产| 91网站最新网址| 制服.丝袜.亚洲.另类.中文| 久久久久国色av免费看影院| 亚洲视频一区二区在线观看| 日韩成人av影视| 成人免费观看av| 欧美日产国产精品| 久久女同精品一区二区| 国产精品色在线| 久久蜜桃av一区精品变态类天堂| 欧洲一区在线电影| 99久久国产综合色|国产精品| 在线视频一区二区免费| 国产成人在线网站| 国产成人在线色| 国产99久久久国产精品免费看| 久久不见久久见免费视频7 | 久久女同互慰一区二区三区| 亚洲摸摸操操av| 丝袜美腿亚洲一区二区图片| 亚洲精品视频一区| 亚洲无人区一区| 日av在线不卡| 国产综合色在线视频区| 欧美艳星brazzers|