sdla_ppp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:23k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2. * sdla_ppp.h Sangoma PPP firmware API definitions.
  3. *
  4. * Author: Nenad Corbic <ncorbic@sangoma.com>
  5. *
  6. * Copyright: (c) 1995-1997 Sangoma Technologies Inc.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. * ============================================================================
  13. * Feb 24, 2000  Nenad Corbic    v2.1.2
  14. * Jan 06, 1997 Gene Kozin v2.0
  15. * Apr 11, 1996 Gene Kozin Initial version.
  16. *****************************************************************************/
  17. #ifndef _SDLA_PPP_H
  18. #define _SDLA_PPP_H
  19. /*----------------------------------------------------------------------------
  20.  * Notes:
  21.  * ------
  22.  * 1. All structures defined in this file are byte-alined.  
  23.  *
  24.  * Compiler Platform
  25.  * -------- --------
  26.  * GNU C Linux
  27.  */
  28. #ifndef PACKED
  29. #    define PACKED __attribute__((packed))
  30. #endif /* PACKED */
  31. /* Adapter memory layout and important constants */
  32. #define PPP508_MB_VECT 0xE000 /* mailbox window vector */
  33. #define PPP508_MB_OFFS 0 /* mailbox offset */
  34. #define PPP508_FLG_OFFS 0x1000 /* status flags offset */
  35. #define PPP508_BUF_OFFS 0x1100 /* buffer info block offset */
  36. #define PPP514_MB_OFFS  0xE000  /* mailbox offset */
  37. #define PPP514_FLG_OFFS 0xF000  /* status flags offset */
  38. #define PPP514_BUF_OFFS 0xF100  /* buffer info block offset */
  39. #define PPP_MAX_DATA 1008 /* command block data buffer length */
  40. /****** Data Structures *****************************************************/
  41. /*----------------------------------------------------------------------------
  42.  * PPP Command Block.
  43.  */
  44. typedef struct ppp_cmd{
  45. unsigned char  command PACKED; /* command code */
  46. unsigned short length PACKED; /* length of data buffer */
  47. unsigned char  result PACKED; /* return code */
  48. unsigned char  rsrv[11] PACKED; /* reserved for future use */
  49. } ppp_cmd_t;
  50. typedef struct cblock{
  51. unsigned char  opp_flag PACKED;
  52. unsigned char  command PACKED; /* command code */
  53. unsigned short length PACKED; /* length of data buffer */
  54. unsigned char  result PACKED; /* return code */
  55. unsigned char  rsrv[11] PACKED; /* reserved for future use */
  56. } cblock_t;
  57. typedef struct ppp_udp_pkt{
  58. ip_pkt_t  ip_pkt PACKED;
  59. udp_pkt_t udp_pkt PACKED;
  60. wp_mgmt_t wp_mgmt PACKED;
  61. cblock_t cblock  PACKED;
  62. unsigned char   data[MAX_LGTH_UDP_MGNT_PKT] PACKED;
  63. } ppp_udp_pkt_t;
  64. typedef struct {
  65. unsigned char status PACKED;
  66. unsigned char data_avail PACKED;
  67. unsigned short real_length PACKED;
  68. unsigned short time_stamp PACKED;
  69. unsigned char data[1] PACKED;
  70. } trace_pkt_t;
  71. typedef struct {
  72. unsigned char  opp_flag PACKED;
  73. unsigned char trace_type PACKED;
  74. unsigned short  trace_length PACKED;
  75. unsigned short  trace_data_ptr PACKED;
  76. unsigned short  trace_time_stamp PACKED;
  77. } trace_element_t;
  78. /* 'command' field defines */
  79. #define PPP_READ_CODE_VERSION 0x10 /* configuration commands */
  80. #define PPP_SET_CONFIG 0x05
  81. #define PPP_READ_CONFIG 0x06
  82. #define PPP_SET_INTR_FLAGS 0x20
  83. #define PPP_READ_INTR_FLAGS 0x21
  84. #define PPP_SET_INBOUND_AUTH 0x30
  85. #define PPP_SET_OUTBOUND_AUTH 0x31
  86. #define PPP_GET_CONNECTION_INFO 0x32
  87. #define PPP_COMM_ENABLE 0x03 /* operational commands */
  88. #define PPP_COMM_DISABLE 0x04
  89. #define PPP_SEND_SIGN_FRAME 0x23
  90. #define PPP_READ_SIGN_RESPONSE 0x24
  91. #define PPP_DATALINE_MONITOR 0x33
  92. #define PPP_READ_STATISTICS 0x07 /* statistics commands */
  93. #define PPP_FLUSH_STATISTICS 0x08
  94. #define PPP_READ_ERROR_STATS 0x09
  95. #define PPP_FLUSH_ERROR_STATS 0x0A
  96. #define PPP_READ_PACKET_STATS 0x12
  97. #define PPP_FLUSH_PACKET_STATS 0x13
  98. #define PPP_READ_LCP_STATS 0x14
  99. #define PPP_FLUSH_LCP_STATS 0x15
  100. #define PPP_READ_LPBK_STATS 0x16
  101. #define PPP_FLUSH_LPBK_STATS 0x17
  102. #define PPP_READ_IPCP_STATS 0x18
  103. #define PPP_FLUSH_IPCP_STATS 0x19
  104. #define PPP_READ_IPXCP_STATS 0x1A
  105. #define PPP_FLUSH_IPXCP_STATS 0x1B
  106. #define PPP_READ_PAP_STATS 0x1C
  107. #define PPP_FLUSH_PAP_STATS 0x1D
  108. #define PPP_READ_CHAP_STATS 0x1E
  109. #define PPP_FLUSH_CHAP_STATS 0x1F
  110. /* 'result' field defines */
  111. #define PPPRES_OK 0x00 /* command executed successfully */
  112. #define PPPRES_INVALID_STATE 0x09 /* invalid command in this context */
  113. /*----------------------------------------------------------------------------
  114.  * PPP Mailbox.
  115.  * This structure is located at offset PPP???_MB_OFFS into PPP???_MB_VECT
  116.  */
  117. typedef struct ppp_mbox
  118. {
  119. unsigned char flag PACKED; /* 00h: command execution flag */
  120. ppp_cmd_t     cmd PACKED; /* 01h: command block */
  121. unsigned char data[1] PACKED; /* 10h: variable length data buffer */
  122. } ppp_mbox_t;
  123. /*----------------------------------------------------------------------------
  124.  * PPP Status Flags.
  125.  * This structure is located at offset PPP???_FLG_OFFS into
  126.  * PPP???_MB_VECT.
  127.  */
  128. typedef struct ppp_flags
  129. {
  130. unsigned char iflag PACKED; /* 00: interrupt flag */
  131. unsigned char imask PACKED; /* 01: interrupt mask */
  132. unsigned char resrv PACKED;
  133. unsigned char mstatus PACKED; /* 03: modem status */
  134. unsigned char lcp_state PACKED; /* 04: LCP state */
  135. unsigned char ppp_phase PACKED; /* 05: PPP phase */
  136. unsigned char ip_state PACKED; /* 06: IPCP state */
  137. unsigned char ipx_state PACKED; /* 07: IPXCP state */
  138. unsigned char pap_state PACKED; /* 08: PAP state */
  139. unsigned char chap_state PACKED; /* 09: CHAP state */
  140. unsigned short disc_cause PACKED; /* 0A: disconnection cause */
  141. } ppp_flags_t;
  142. /* 'iflag' defines */
  143. #define PPP_INTR_RXRDY 0x01 /* Rx ready */
  144. #define PPP_INTR_TXRDY 0x02 /* Tx ready */
  145. #define PPP_INTR_MODEM 0x04 /* modem status change (DCD, CTS) */
  146. #define PPP_INTR_CMD 0x08 /* interface command completed */
  147. #define PPP_INTR_DISC 0x10 /* data link disconnected */
  148. #define PPP_INTR_OPEN 0x20 /* data link open */
  149. #define PPP_INTR_DROP_DTR 0x40 /* DTR drop timeout expired */
  150. #define PPP_INTR_TIMER          0x80    /* timer interrupt */
  151. /* 'mstatus' defines */
  152. #define PPP_MDM_DCD 0x08 /* mdm_status: DCD */
  153. #define PPP_MDM_CTS 0x20 /* mdm_status: CTS */
  154. /* 'disc_cause' defines */
  155. #define PPP_LOCAL_TERMINATION   0x0001 /* Local Request by PPP termination phase */
  156. #define PPP_DCD_CTS_DROP        0x0002  /* DCD and/or CTS dropped. Link down */
  157. #define PPP_REMOTE_TERMINATION 0x0800 /* Remote Request by PPP termination phase */
  158. /* 'misc_config_bits' defines */
  159. #define DONT_RE_TX_ABORTED_I_FRAMES  0x01
  160. #define TX_FRM_BYTE_COUNT_STATS         0x02
  161. #define RX_FRM_BYTE_COUNT_STATS         0x04
  162. #define TIME_STAMP_IN_RX_FRAMES         0x08
  163. #define NON_STD_ADPTR_FREQ              0x10
  164. #define INTERFACE_LEVEL_RS232           0x20
  165. #define AUTO_LINK_RECOVERY              0x100
  166. #define DONT_TERMINATE_LNK_MAX_CONFIG   0x200                    
  167. /* 'authentication options' defines */
  168. #define NO_AUTHENTICATION 0x00
  169. #define INBOUND_AUTH 0x80
  170. #define PAP_AUTH 0x01
  171. #define CHAP_AUTH 0x02
  172. /* 'ip options' defines */
  173. #define L_AND_R_IP_NO_ASSIG 0x00
  174. #define L_IP_LOCAL_ASSIG     0x01
  175. #define L_IP_REMOTE_ASSIG    0x02
  176. #define R_IP_LOCAL_ASSIG        0x04
  177. #define R_IP_REMOTE_ASSIG       0x08
  178. #define ENABLE_IP 0x80
  179. /* 'ipx options' defines */
  180. #define ROUTING_PROT_DEFAULT    0x20
  181. #define ENABLE_IPX 0x80
  182. #define DISABLE_IPX 0x00
  183. /*----------------------------------------------------------------------------
  184.  * PPP Buffer Info.
  185.  * This structure is located at offset PPP508_BUF_OFFS into
  186.  * PPP508_MB_VECT.
  187.  */
  188. typedef struct ppp508_buf_info
  189. {
  190. unsigned short txb_num PACKED; /* 00: number of transmit buffers */
  191. unsigned long  txb_ptr PACKED; /* 02: pointer to the buffer ctl. */
  192. unsigned long  txb_nxt  PACKED;
  193. unsigned char  rsrv1[22] PACKED;
  194. unsigned short rxb_num PACKED; /* 20: number of receive buffers */
  195. unsigned long  rxb_ptr PACKED; /* 22: pointer to the buffer ctl. */
  196. unsigned long  rxb1_ptr PACKED; /* 26: pointer to the first buf.ctl. */
  197. unsigned long  rxb_base PACKED; /* 2A: pointer to the buffer base */
  198. unsigned char  rsrv2[2] PACKED;
  199. unsigned long  rxb_end PACKED; /* 30: pointer to the buffer end */
  200. } ppp508_buf_info_t;
  201. /*----------------------------------------------------------------------------
  202.  * Transmit/Receive Buffer Control Block.
  203.  */
  204. typedef struct ppp_buf_ctl
  205. {
  206. unsigned char  flag PACKED; /* 00: 'buffer ready' flag */
  207. unsigned short length PACKED; /* 01: length of data */
  208. unsigned char  reserved1[1] PACKED; /* 03: */
  209. unsigned char  proto PACKED; /* 04: protocol */
  210. unsigned short timestamp PACKED; /* 05: time stamp (Rx only) */
  211. unsigned char  reserved2[5] PACKED; /* 07: */
  212. union
  213. {
  214. unsigned short o_p[2]; /* 1C: buffer offset & page (S502) */
  215. unsigned long  ptr; /* 1C: buffer pointer (S508) */
  216. } buf PACKED;
  217. } ppp_buf_ctl_t;
  218. /*----------------------------------------------------------------------------
  219.  * S508 Adapter Configuration Block (passed to the PPP_SET_CONFIG command).
  220.  */
  221. typedef struct ppp508_conf
  222. {
  223. unsigned long  line_speed PACKED; /* 00: baud rate, bps */
  224. unsigned short txbuf_percent PACKED; /* 04: % of Tx buffer */
  225. unsigned short conf_flags PACKED; /* 06: configuration bits */
  226. unsigned short mtu_local PACKED; /* 08: local MTU */
  227. unsigned short mtu_remote PACKED; /* 0A: remote MTU */
  228. unsigned short restart_tmr PACKED; /* 0C: restart timer */
  229. unsigned short auth_rsrt_tmr PACKED; /* 0E: authentication timer */
  230. unsigned short auth_wait_tmr PACKED; /* 10: authentication timer */
  231. unsigned short mdm_fail_tmr PACKED; /* 12: modem failure timer */
  232. unsigned short dtr_drop_tmr PACKED; /* 14: DTR drop timer */
  233. unsigned short connect_tmout PACKED; /* 16: connection timeout */
  234. unsigned short conf_retry PACKED; /* 18: max. retry */
  235. unsigned short term_retry PACKED; /* 1A: max. retry */
  236. unsigned short fail_retry PACKED; /* 1C: max. retry */
  237. unsigned short auth_retry PACKED; /* 1E: max. retry */
  238. unsigned char  auth_options PACKED; /* 20: authentication opt. */
  239. unsigned char  ip_options PACKED; /* 21: IP options */
  240. unsigned long  ip_local PACKED; /* 22: local IP address */
  241. unsigned long  ip_remote PACKED; /* 26: remote IP address */
  242. unsigned char  ipx_options PACKED; /* 2A: IPX options */
  243. unsigned char  ipx_netno[4] PACKED; /* 2B: IPX net number */
  244. unsigned char  ipx_local[6] PACKED; /* 2F: local IPX node number*/
  245. unsigned char  ipx_remote[6] PACKED; /* 35: remote IPX node num.*/
  246. unsigned char  ipx_router[48] PACKED; /* 3B: IPX router name*/
  247. unsigned long  alt_cpu_clock PACKED; /* 6B:  */
  248. } ppp508_conf_t;
  249. /*----------------------------------------------------------------------------
  250.  * S508 Adapter Read Connection Information Block 
  251.  *    Returned by the PPP_GET_CONNECTION_INFO command
  252.  */
  253. typedef struct ppp508_connect_info
  254. {
  255. unsigned short  mru PACKED; /* 00-01 Remote Max Rec' Unit */
  256. unsigned char   ip_options  PACKED; /* 02: Negotiated ip options  */
  257. unsigned long   ip_local PACKED; /* 03-06: local IP address    */
  258. unsigned long   ip_remote PACKED; /* 07-0A: remote IP address   */
  259. unsigned char ipx_options PACKED; /* 0B: Negotiated ipx options */
  260. unsigned char   ipx_netno[4] PACKED; /* 0C-0F: IPX net number      */
  261. unsigned char   ipx_local[6] PACKED; /* 10-1F: local IPX node #    */
  262. unsigned char   ipx_remote[6] PACKED; /* 16-1B: remote IPX node #   */
  263. unsigned char   ipx_router[48] PACKED; /* 1C-4B: IPX router name     */
  264. unsigned char auth_status PACKED; /* 4C: Authentication Status  */
  265. unsigned char  inbd_auth_peerID[1] PACKED; /* 4D: variable length inbound authenticated peer ID */
  266. } ppp508_connect_info_t;
  267. /* 'line_speed' field */
  268. #define PPP_BITRATE_1200 0x01
  269. #define PPP_BITRATE_2400 0x02
  270. #define PPP_BITRATE_4800 0x03
  271. #define PPP_BITRATE_9600 0x04
  272. #define PPP_BITRATE_19200 0x05
  273. #define PPP_BITRATE_38400 0x06
  274. #define PPP_BITRATE_45000 0x07
  275. #define PPP_BITRATE_56000 0x08
  276. #define PPP_BITRATE_64000 0x09
  277. #define PPP_BITRATE_74000 0x0A
  278. #define PPP_BITRATE_112000 0x0B
  279. #define PPP_BITRATE_128000 0x0C
  280. #define PPP_BITRATE_156000 0x0D
  281. /* Defines for the 'conf_flags' field */
  282. #define PPP_IGNORE_TX_ABORT 0x01 /* don't re-transmit aborted frames */
  283. #define PPP_ENABLE_TX_STATS 0x02 /* enable Tx statistics */
  284. #define PPP_ENABLE_RX_STATS 0x04 /* enable Rx statistics */
  285. #define PPP_ENABLE_TIMESTAMP 0x08 /* enable timestamp */
  286. /* 'ip_options' defines */
  287. #define PPP_LOCAL_IP_LOCAL 0x01
  288. #define PPP_LOCAL_IP_REMOTE 0x02
  289. #define PPP_REMOTE_IP_LOCAL 0x04
  290. #define PPP_REMOTE_IP_REMOTE 0x08
  291. /* 'ipx_options' defines */
  292. #define PPP_REMOTE_IPX_NETNO 0x01
  293. #define PPP_REMOTE_IPX_LOCAL 0x02
  294. #define PPP_REMOTE_IPX_REMOTE 0x04
  295. #define PPP_IPX_ROUTE_RIP_SAP 0x08
  296. #define PPP_IPX_ROUTE_NLSP 0x10
  297. #define PPP_IPX_ROUTE_DEFAULT 0x20
  298. #define PPP_IPX_CONF_COMPLETE 0x40
  299. #define PPP_IPX_ENABLE 0x80
  300. /*----------------------------------------------------------------------------
  301.  * S508 Adapter Configuration Block (returned by the PPP_READ_CONFIG command).
  302.  */
  303. typedef struct ppp508_get_conf
  304. {
  305. unsigned long  bps PACKED; /* 00: baud rate, bps */
  306. ppp508_conf_t  conf PACKED; /* 04: requested config. */
  307. unsigned short txb_num PACKED; /* 6F: number of Tx buffers */
  308. unsigned short rxb_num PACKED; /* 71: number of Rx buffers */
  309. } ppp508_get_conf_t;
  310. /*----------------------------------------------------------------------------
  311.  * S508 Operational Statistics (returned by the PPP_READ_STATISTIC command).
  312.  */
  313. typedef struct ppp508_stats
  314. {
  315. unsigned short reserved1 PACKED; /* 00: */
  316. unsigned short rx_bad_len PACKED; /* 02: */
  317. unsigned short reserved2 PACKED; /* 04: */
  318. unsigned long  tx_frames PACKED; /* 06: */
  319. unsigned long  tx_bytes PACKED; /* 0A: */
  320. unsigned long  rx_frames PACKED; /* 0E: */
  321. unsigned long  rx_bytes PACKED; /* 12: */
  322. } ppp508_stats_t;
  323. /*----------------------------------------------------------------------------
  324.  * Adapter Error Statistics (returned by the PPP_READ_ERROR_STATS command).
  325.  */
  326. typedef struct ppp_err_stats
  327. {
  328. unsigned char  rx_overrun PACKED; /* 00: Rx overrun errors */
  329. unsigned char  rx_bad_crc PACKED; /* 01: Rx CRC errors */
  330. unsigned char  rx_abort PACKED; /* 02: Rx aborted frames */
  331. unsigned char  rx_lost PACKED; /* 03: Rx frames lost */
  332. unsigned char  tx_abort PACKED; /* 04: Tx aborted frames */
  333. unsigned char  tx_underrun PACKED; /* 05: Tx underrun errors */
  334. unsigned char  tx_missed_intr PACKED; /* 06: Tx underruns missed */
  335. unsigned char  reserved PACKED; /* 07: Tx underruns missed */
  336. unsigned char  dcd_trans PACKED; /* 08: DCD transitions */
  337. unsigned char  cts_trans PACKED; /* 09: CTS transitions */
  338. } ppp_err_stats_t;
  339. /*----------------------------------------------------------------------------
  340.  * Packet Statistics (returned by the PPP_READ_PACKET_STATS command).
  341.  */
  342. typedef struct ppp_pkt_stats
  343. {
  344. unsigned short rx_bad_header PACKED; /* 00: */
  345. unsigned short rx_prot_unknwn PACKED; /* 02: */
  346. unsigned short rx_too_large PACKED; /* 04: */
  347. unsigned short rx_lcp PACKED; /* 06: */
  348. unsigned short tx_lcp PACKED; /* 08: */
  349. unsigned short rx_ipcp PACKED; /* 0A: */
  350. unsigned short tx_ipcp PACKED; /* 0C: */
  351. unsigned short rx_ipxcp PACKED; /* 0E: */
  352. unsigned short tx_ipxcp PACKED; /* 10: */
  353. unsigned short rx_pap PACKED; /* 12: */
  354. unsigned short tx_pap PACKED; /* 14: */
  355. unsigned short rx_chap PACKED; /* 16: */
  356. unsigned short tx_chap PACKED; /* 18: */
  357. unsigned short rx_lqr PACKED; /* 1A: */
  358. unsigned short tx_lqr PACKED; /* 1C: */
  359. unsigned short rx_ip PACKED; /* 1E: */
  360. unsigned short tx_ip PACKED; /* 20: */
  361. unsigned short rx_ipx PACKED; /* 22: */
  362. unsigned short tx_ipx PACKED; /* 24: */
  363. } ppp_pkt_stats_t;
  364. /*----------------------------------------------------------------------------
  365.  * LCP Statistics (returned by the PPP_READ_LCP_STATS command).
  366.  */
  367. typedef struct ppp_lcp_stats
  368. {
  369. unsigned short rx_unknown PACKED; /* 00: unknown LCP type */
  370. unsigned short rx_conf_rqst PACKED; /* 02: Configure-Request */
  371. unsigned short rx_conf_ack PACKED; /* 04: Configure-Ack */
  372. unsigned short rx_conf_nak PACKED; /* 06: Configure-Nak */
  373. unsigned short rx_conf_rej PACKED; /* 08: Configure-Reject */
  374. unsigned short rx_term_rqst PACKED; /* 0A: Terminate-Request */
  375. unsigned short rx_term_ack PACKED; /* 0C: Terminate-Ack */
  376. unsigned short rx_code_rej PACKED; /* 0E: Code-Reject */
  377. unsigned short rx_proto_rej PACKED; /* 10: Protocol-Reject */
  378. unsigned short rx_echo_rqst PACKED; /* 12: Echo-Request */
  379. unsigned short rx_echo_reply PACKED; /* 14: Echo-Reply */
  380. unsigned short rx_disc_rqst PACKED; /* 16: Discard-Request */
  381. unsigned short tx_conf_rqst PACKED; /* 18: Configure-Request */
  382. unsigned short tx_conf_ack PACKED; /* 1A: Configure-Ack */
  383. unsigned short tx_conf_nak PACKED; /* 1C: Configure-Nak */
  384. unsigned short tx_conf_rej PACKED; /* 1E: Configure-Reject */
  385. unsigned short tx_term_rqst PACKED; /* 20: Terminate-Request */
  386. unsigned short tx_term_ack PACKED; /* 22: Terminate-Ack */
  387. unsigned short tx_code_rej PACKED; /* 24: Code-Reject */
  388. unsigned short tx_proto_rej PACKED; /* 26: Protocol-Reject */
  389. unsigned short tx_echo_rqst PACKED; /* 28: Echo-Request */
  390. unsigned short tx_echo_reply PACKED; /* 2A: Echo-Reply */
  391. unsigned short tx_disc_rqst PACKED; /* 2E: Discard-Request */
  392. unsigned short rx_too_large PACKED; /* 30: packets too large */
  393. unsigned short rx_ack_inval PACKED; /* 32: invalid Conf-Ack */
  394. unsigned short rx_rej_inval PACKED; /* 34: invalid Conf-Reject */
  395. unsigned short rx_rej_badid PACKED; /* 36: Conf-Reject w/bad ID */
  396. } ppp_lcp_stats_t;
  397. /*----------------------------------------------------------------------------
  398.  * Loopback Error Statistics (returned by the PPP_READ_LPBK_STATS command).
  399.  */
  400. typedef struct ppp_lpbk_stats
  401. {
  402. unsigned short conf_magic PACKED; /* 00:  */
  403. unsigned short loc_echo_rqst PACKED; /* 02:  */
  404. unsigned short rem_echo_rqst PACKED; /* 04:  */
  405. unsigned short loc_echo_reply PACKED; /* 06:  */
  406. unsigned short rem_echo_reply PACKED; /* 08:  */
  407. unsigned short loc_disc_rqst PACKED; /* 0A:  */
  408. unsigned short rem_disc_rqst PACKED; /* 0C:  */
  409. unsigned short echo_tx_collsn PACKED; /* 0E:  */
  410. unsigned short echo_rx_collsn PACKED; /* 10:  */
  411. } ppp_lpbk_stats_t;
  412. /*----------------------------------------------------------------------------
  413.  * Protocol Statistics (returned by the PPP_READ_IPCP_STATS and
  414.  * PPP_READ_IPXCP_STATS commands).
  415.  */
  416. typedef struct ppp_prot_stats
  417. {
  418. unsigned short rx_unknown PACKED; /* 00: unknown type */
  419. unsigned short rx_conf_rqst PACKED; /* 02: Configure-Request */
  420. unsigned short rx_conf_ack PACKED; /* 04: Configure-Ack */
  421. unsigned short rx_conf_nak PACKED; /* 06: Configure-Nak */
  422. unsigned short rx_conf_rej PACKED; /* 08: Configure-Reject */
  423. unsigned short rx_term_rqst PACKED; /* 0A: Terminate-Request */
  424. unsigned short rx_term_ack PACKED; /* 0C: Terminate-Ack */
  425. unsigned short rx_code_rej PACKED; /* 0E: Code-Reject */
  426. unsigned short reserved PACKED; /* 10: */
  427. unsigned short tx_conf_rqst PACKED; /* 12: Configure-Request */
  428. unsigned short tx_conf_ack PACKED; /* 14: Configure-Ack */
  429. unsigned short tx_conf_nak PACKED; /* 16: Configure-Nak */
  430. unsigned short tx_conf_rej PACKED; /* 18: Configure-Reject */
  431. unsigned short tx_term_rqst PACKED; /* 1A: Terminate-Request */
  432. unsigned short tx_term_ack PACKED; /* 1C: Terminate-Ack */
  433. unsigned short tx_code_rej PACKED; /* 1E: Code-Reject */
  434. unsigned short rx_too_large PACKED; /* 20: packets too large */
  435. unsigned short rx_ack_inval PACKED; /* 22: invalid Conf-Ack */
  436. unsigned short rx_rej_inval PACKED; /* 24: invalid Conf-Reject */
  437. unsigned short rx_rej_badid PACKED; /* 26: Conf-Reject w/bad ID */
  438. } ppp_prot_stats_t;
  439. /*----------------------------------------------------------------------------
  440.  * PAP Statistics (returned by the PPP_READ_PAP_STATS command).
  441.  */
  442. typedef struct ppp_pap_stats
  443. {
  444. unsigned short rx_unknown PACKED; /* 00: unknown type */
  445. unsigned short rx_auth_rqst PACKED; /* 02: Authenticate-Request */
  446. unsigned short rx_auth_ack PACKED; /* 04: Authenticate-Ack */
  447. unsigned short rx_auth_nak PACKED; /* 06: Authenticate-Nak */
  448. unsigned short reserved PACKED; /* 08: */
  449. unsigned short tx_auth_rqst PACKED; /* 0A: Authenticate-Request */
  450. unsigned short tx_auth_ack PACKED; /* 0C: Authenticate-Ack */
  451. unsigned short tx_auth_nak PACKED; /* 0E: Authenticate-Nak */
  452. unsigned short rx_too_large PACKED; /* 10: packets too large */
  453. unsigned short rx_bad_peerid PACKED; /* 12: invalid peer ID */
  454. unsigned short rx_bad_passwd PACKED; /* 14: invalid password */
  455. } ppp_pap_stats_t;
  456. /*----------------------------------------------------------------------------
  457.  * CHAP Statistics (returned by the PPP_READ_CHAP_STATS command).
  458.  */
  459. typedef struct ppp_chap_stats
  460. {
  461. unsigned short rx_unknown PACKED; /* 00: unknown type */
  462. unsigned short rx_challenge PACKED; /* 02: Authenticate-Request */
  463. unsigned short rx_response PACKED; /* 04: Authenticate-Ack */
  464. unsigned short rx_success PACKED; /* 06: Authenticate-Nak */
  465. unsigned short rx_failure PACKED; /* 08: Authenticate-Nak */
  466. unsigned short reserved PACKED; /* 0A: */
  467. unsigned short tx_challenge PACKED; /* 0C: Authenticate-Request */
  468. unsigned short tx_response PACKED; /* 0E: Authenticate-Ack */
  469. unsigned short tx_success PACKED; /* 10: Authenticate-Nak */
  470. unsigned short tx_failure PACKED; /* 12: Authenticate-Nak */
  471. unsigned short rx_too_large PACKED; /* 14: packets too large */
  472. unsigned short rx_bad_peerid PACKED; /* 16: invalid peer ID */
  473. unsigned short rx_bad_passwd PACKED; /* 18: invalid password */
  474. unsigned short rx_bad_md5 PACKED; /* 1A: invalid MD5 format */
  475. unsigned short rx_bad_resp PACKED; /* 1C: invalid response */
  476. } ppp_chap_stats_t;
  477. /*----------------------------------------------------------------------------
  478.  * Connection Information (returned by the PPP_GET_CONNECTION_INFO command).
  479.  */
  480. typedef struct ppp_conn_info
  481. {
  482. unsigned short remote_mru PACKED; /* 00:  */
  483. unsigned char  ip_options PACKED; /* 02:  */
  484. unsigned char  ip_local[4] PACKED; /* 03:  */
  485. unsigned char  ip_remote[4] PACKED; /* 07:  */
  486. unsigned char  ipx_options PACKED; /* 0B:  */
  487. unsigned char  ipx_network[4] PACKED; /* 0C:  */
  488. unsigned char  ipx_local[6] PACKED; /* 10:  */
  489. unsigned char  ipx_remote[6] PACKED; /* 16:  */
  490. unsigned char  ipx_router[48] PACKED; /* 1C:  */
  491. unsigned char  auth_status PACKED; /* 4C:  */
  492. unsigned char  peer_id[0] PACKED; /* 4D:  */
  493. } ppp_conn_info_t;
  494. /* Data structure for SET_TRIGGER_INTR command
  495.  */
  496. typedef struct ppp_intr_info{
  497. unsigned char  i_enable PACKED; /* 0 Interrupt enable bits */
  498. unsigned char  irq              PACKED; /* 1 Irq number */
  499. unsigned short timer_len        PACKED; /* 2 Timer delay */
  500. } ppp_intr_info_t;
  501. #define FT1_MONITOR_STATUS_CTRL                         0x80
  502. #define SET_FT1_MODE                                    0x81
  503. /* Special UDP drivers management commands */
  504. #define PPIPE_ENABLE_TRACING                            0x20
  505. #define PPIPE_DISABLE_TRACING                           0x21
  506. #define PPIPE_GET_TRACE_INFO                            0x22
  507. #define PPIPE_GET_IBA_DATA                              0x23
  508. #define PPIPE_KILL_BOARD      0x24
  509. #define PPIPE_FT1_READ_STATUS                           0x25
  510. #define PPIPE_DRIVER_STAT_IFSEND                        0x26
  511. #define PPIPE_DRIVER_STAT_INTR                          0x27
  512. #define PPIPE_DRIVER_STAT_GEN                           0x28
  513. #define PPIPE_FLUSH_DRIVER_STATS                        0x29
  514. #define PPIPE_ROUTER_UP_TIME                            0x30
  515. #define DISABLE_TRACING  0x00
  516. #define TRACE_SIGNALLING_FRAMES 0x01
  517. #define TRACE_DATA_FRAMES 0x02
  518. #ifdef _MSC_
  519. #  pragma pack()
  520. #endif
  521. #endif /* _SDLA_PPP_H */