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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * 
  3.  * ATM Lan Emulation Daemon vs. driver interface
  4.  *
  5.  * carnil@cs.tut.fi
  6.  *
  7.  */
  8. #ifndef _ATMLEC_H_
  9. #define _ATMLEC_H_
  10. #include <linux/atmapi.h>
  11. #include <linux/atmioc.h>
  12. #include <linux/atm.h>
  13. #include <linux/if_ether.h>
  14. /* ATM lec daemon control socket */
  15. #define ATMLEC_CTRL _IO('a',ATMIOC_LANE)
  16. #define ATMLEC_DATA _IO('a',ATMIOC_LANE+1)
  17. #define ATMLEC_MCAST _IO('a',ATMIOC_LANE+2)
  18. /* Maximum number of LEC interfaces (tweakable) */
  19. #define MAX_LEC_ITF 48
  20. /* From the total of MAX_LEC_ITF, last NUM_TR_DEVS are reserved for Token Ring.
  21.  * E.g. if MAX_LEC_ITF = 48 and NUM_TR_DEVS = 8, then lec0-lec39 are for
  22.  * Ethernet ELANs and lec40-lec47 are for Token Ring ELANS.
  23.  */
  24. #define NUM_TR_DEVS 8
  25. typedef enum { 
  26.         l_set_mac_addr,   l_del_mac_addr, 
  27.         l_svc_setup, 
  28.         l_addr_delete,    l_topology_change, 
  29.         l_flush_complete, l_arp_update,
  30.         l_narp_req, /* LANE2 mandates the use of this */
  31.         l_config,         l_flush_tran_id, 
  32.         l_set_lecid,      l_arp_xmt,
  33.         l_rdesc_arp_xmt,
  34.         l_associate_req,
  35.         l_should_bridge   /* should we bridge this MAC? */
  36. } atmlec_msg_type;
  37. #define ATMLEC_MSG_TYPE_MAX l_should_bridge
  38. struct atmlec_config_msg {
  39.         unsigned int maximum_unknown_frame_count;
  40.         unsigned int max_unknown_frame_time;
  41.         unsigned short max_retry_count;
  42.         unsigned int aging_time;
  43.         unsigned int forward_delay_time;
  44.         unsigned int arp_response_time;
  45.         unsigned int flush_timeout;
  46.         unsigned int path_switching_delay;
  47.         unsigned int  lane_version; /* LANE2: 1 for LANEv1, 2 for LANEv2 */
  48.         int mtu;
  49.         int is_proxy;
  50. };
  51.  
  52. struct atmlec_msg {
  53.         atmlec_msg_type type;
  54.         int             sizeoftlvs;        /* LANE2: if != 0, tlvs follow */ 
  55.         union {
  56.                 struct {
  57.                         unsigned char mac_addr[ETH_ALEN];
  58.                         unsigned char atm_addr[ATM_ESA_LEN];
  59.                         unsigned int flag;/* Topology_change flag, 
  60.                                               remoteflag, permanent flag,
  61.                                               lecid, transaction id */
  62.                         unsigned int targetless_le_arp; /* LANE2 */
  63.                         unsigned int no_source_le_narp; /* LANE2 */
  64.                 } normal;
  65.                 struct atmlec_config_msg config;
  66.                 struct {
  67.                         uint16_t lec_id;                     /* requestor lec_id  */
  68.                         uint32_t tran_id;                    /* transaction id    */
  69.                         unsigned char mac_addr[ETH_ALEN];    /* dst mac addr      */
  70.                         unsigned char atm_addr[ATM_ESA_LEN]; /* reqestor ATM addr */
  71.                 } proxy;
  72.      /* For mapping LE_ARP requests to responses. Filled by */
  73.         } content;       /* zeppelin, returned by kernel. Used only when proxying */ 
  74. } __ATM_API_ALIGN;
  75. struct atmlec_ioc {
  76.         int dev_num;
  77.         unsigned char atm_addr[ATM_ESA_LEN];
  78.         unsigned char receive;    /* 1= receive vcc, 0 = send vcc */
  79. };
  80. #endif /* _ATMLEC_H_ */