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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* net/atm/atmarp.h - RFC1577 ATM ARP */
  2.  
  3. /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  4.  
  5.  
  6. #ifndef _ATMCLIP_H
  7. #define _ATMCLIP_H
  8. #include <linux/netdevice.h>
  9. #include <linux/skbuff.h>
  10. #include <linux/atm.h>
  11. #include <linux/atmdev.h>
  12. #include <linux/atmarp.h>
  13. #include <linux/spinlock.h>
  14. #include <net/neighbour.h>
  15. #define CLIP_VCC(vcc) ((struct clip_vcc *) ((vcc)->user_back))
  16. #define NEIGH2ENTRY(neigh) ((struct atmarp_entry *) (neigh)->primary_key)
  17. struct clip_vcc {
  18. struct atm_vcc *vcc; /* VCC descriptor */
  19. struct atmarp_entry *entry; /* ATMARP table entry, NULL if IP addr.
  20.    isn't known yet */
  21. int xoff; /* 1 if send buffer is full */
  22. unsigned char encap; /* 0: NULL, 1: LLC/SNAP */
  23. unsigned long last_use; /* last send or receive operation */
  24. unsigned long idle_timeout; /* keep open idle for so many jiffies*/
  25. void (*old_push)(struct atm_vcc *vcc,struct sk_buff *skb);
  26. /* keep old push fn for chaining */
  27. void (*old_pop)(struct atm_vcc *vcc,struct sk_buff *skb);
  28. /* keep old pop fn for chaining */
  29. struct clip_vcc *next; /* next VCC */
  30. };
  31. struct atmarp_entry {
  32. u32 ip; /* IP address */
  33. struct clip_vcc *vccs; /* active VCCs; NULL if resolution is
  34.    pending */
  35. unsigned long expires; /* entry expiration time */
  36. struct neighbour *neigh; /* neighbour back-pointer */
  37. };
  38. #define PRIV(dev) ((struct clip_priv *) ((struct net_device *) (dev)+1))
  39. struct clip_priv {
  40. int number; /* for convenience ... */
  41. spinlock_t xoff_lock; /* ensures that pop is atomic (SMP) */
  42. struct net_device_stats stats;
  43. struct net_device *next; /* next CLIP interface */
  44. };
  45. extern struct atm_vcc *atmarpd; /* ugly */
  46. extern struct neigh_table clip_tbl;
  47. int clip_create(int number);
  48. int clip_mkip(struct atm_vcc *vcc,int timeout);
  49. int clip_setentry(struct atm_vcc *vcc,u32 ip);
  50. int clip_encap(struct atm_vcc *vcc,int mode);
  51. void atm_clip_init(void);
  52. #endif