mpc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _MPC_H_
  2. #define _MPC_H_
  3. #include <linux/atm.h>
  4. #include <linux/atmmpc.h>
  5. #include <linux/skbuff.h>
  6. #include <linux/spinlock.h>
  7. #include "mpoa_caches.h"
  8. /* kernel -> mpc-daemon */
  9. int msg_to_mpoad(struct k_message *msg, struct mpoa_client *mpc);
  10. /* Functions for ioctl(ATMMPC_*) operations */
  11. int atm_mpoa_mpoad_attach(struct atm_vcc *vcc, int arg);
  12. int atm_mpoa_vcc_attach(struct atm_vcc *vcc, long arg);
  13. struct mpoa_client {
  14.         struct mpoa_client *next;
  15.         struct net_device *dev;      /* lec in question                     */
  16.         int dev_num;                 /* e.g. 2 for lec2                     */
  17.         int (*old_hard_start_xmit)(struct sk_buff *skb, struct net_device *dev);
  18.         struct atm_vcc *mpoad_vcc;   /* control channel to mpoad            */
  19.         uint8_t mps_ctrl_addr[ATM_ESA_LEN];  /* MPS control ATM address     */
  20.         uint8_t our_ctrl_addr[ATM_ESA_LEN];  /* MPC's control ATM address   */
  21.         rwlock_t ingress_lock;
  22.         struct in_cache_ops *in_ops; /* ingress cache operations            */
  23.         in_cache_entry *in_cache;    /* the ingress cache of this MPC       */
  24.         rwlock_t egress_lock;
  25.         struct eg_cache_ops *eg_ops; /* egress cache operations             */
  26.         eg_cache_entry *eg_cache;    /* the egress  cache of this MPC       */
  27.         uint8_t *mps_macs;           /* array of MPS MAC addresses, >=1     */
  28.         int number_of_mps_macs;      /* number of the above MAC addresses   */
  29.         struct mpc_parameters parameters;  /* parameters for this client    */
  30. };
  31. struct atm_mpoa_qos {
  32.         struct atm_mpoa_qos *next;
  33.         uint32_t ipaddr;
  34.         struct atm_qos qos;
  35. };
  36. /* Functions to call during ioctl(ATMMPC, ) */
  37. struct atm_mpoa_ops {
  38.         int (*mpoad_attach)(struct atm_vcc *vcc, int arg);  /* attach mpoa daemon  */
  39.         int (*vcc_attach)(struct atm_vcc *vcc, long arg);   /* attach shortcut vcc */
  40. };
  41. /* Boot/module initialization function */
  42. void atm_mpoa_init(void);
  43. void atm_mpoa_init_ops(struct atm_mpoa_ops *ops);
  44. /* MPOA QoS operations */
  45. struct atm_mpoa_qos *atm_mpoa_add_qos(uint32_t dst_ip, struct atm_qos *qos);
  46. struct atm_mpoa_qos *atm_mpoa_search_qos(uint32_t dst_ip);
  47. int atm_mpoa_delete_qos(struct atm_mpoa_qos *qos);
  48. /* Display QoS entries. This is for the procfs */
  49. void atm_mpoa_disp_qos(char *page, int *len);
  50. #endif /* _MPC_H_ */