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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * AppleTalk networking structures
  3.  *
  4.  * The following are directly referenced from the University Of Michigan
  5.  * netatalk for compatibility reasons.
  6.  */
  7. #ifndef __LINUX_ATALK_H__
  8. #define __LINUX_ATALK_H__
  9. #define ATPORT_FIRST 1
  10. #define ATPORT_RESERVED 128
  11. #define ATPORT_LAST 254 /* 254 is only legal on localtalk */ 
  12. #define ATADDR_ANYNET (__u16)0
  13. #define ATADDR_ANYNODE (__u8)0
  14. #define ATADDR_ANYPORT  (__u8)0
  15. #define ATADDR_BCAST (__u8)255
  16. #define DDP_MAXSZ 587
  17. #define DDP_MAXHOPS     15      /* 4 bits of hop counter */
  18. #define SIOCATALKDIFADDR       (SIOCPROTOPRIVATE + 0)
  19. struct at_addr 
  20. {
  21. __u16 s_net;
  22. __u8 s_node;
  23. };
  24. struct sockaddr_at 
  25. {
  26. sa_family_t sat_family;
  27. __u8 sat_port;
  28. struct at_addr sat_addr;
  29. char sat_zero[ 8 ];
  30. };
  31. struct netrange 
  32. {
  33. __u8 nr_phase;
  34. __u16 nr_firstnet;
  35. __u16 nr_lastnet;
  36. };
  37. struct atalk_route
  38. {
  39. struct net_device *dev;
  40. struct at_addr target;
  41. struct at_addr gateway;
  42. int flags;
  43. struct atalk_route *next;
  44. };
  45. struct atalk_iface
  46. {
  47. struct net_device *dev;
  48. struct at_addr address; /* Our address */
  49. int status; /* What are we doing? */
  50. #define ATIF_PROBE 1 /* Probing for an address */
  51. #define ATIF_PROBE_FAIL 2 /* Probe collided */
  52. struct netrange nets; /* Associated direct netrange */
  53. struct atalk_iface *next;
  54. };
  55. struct atalk_sock
  56. {
  57. unsigned short dest_net;
  58. unsigned short src_net;
  59. unsigned char dest_node;
  60. unsigned char src_node;
  61. unsigned char dest_port;
  62. unsigned char src_port;
  63. };
  64. #ifdef __KERNEL__
  65. #include <asm/byteorder.h>
  66. struct ddpehdr
  67. {
  68. #ifdef __LITTLE_ENDIAN_BITFIELD
  69. __u16 deh_len:10, deh_hops:4, deh_pad:2;
  70. #else
  71. __u16 deh_pad:2, deh_hops:4, deh_len:10;
  72. #endif
  73. __u16 deh_sum;
  74. __u16 deh_dnet;
  75. __u16 deh_snet;
  76. __u8 deh_dnode;
  77. __u8 deh_snode;
  78. __u8 deh_dport;
  79. __u8 deh_sport;
  80. /* And netatalk apps expect to stick the type in themselves */
  81. };
  82. /*
  83.  * Don't drop the struct into the struct above.  You'll get some
  84.  * surprise padding.
  85.  */
  86.  
  87. struct ddpebits
  88. {
  89. #ifdef __LITTLE_ENDIAN_BITFIELD
  90. __u16 deh_len:10, deh_hops:4, deh_pad:2;
  91. #else
  92. __u16 deh_pad:2, deh_hops:4, deh_len:10;
  93. #endif
  94. };
  95. /*
  96.  * Short form header
  97.  */
  98.  
  99. struct ddpshdr
  100. {
  101. #ifdef __LITTLE_ENDIAN_BITFIELD
  102. __u16 dsh_len:10, dsh_pad:6;
  103. #else
  104. __u16 dsh_pad:6, dsh_len:10;
  105. #endif
  106. __u8 dsh_dport;
  107. __u8 dsh_sport;
  108. /* And netatalk apps expect to stick the type in themselves */
  109. };
  110. /* AppleTalk AARP headers */
  111. struct elapaarp
  112. {
  113. __u16 hw_type;
  114. #define AARP_HW_TYPE_ETHERNET 1
  115. #define AARP_HW_TYPE_TOKENRING 2
  116. __u16 pa_type;
  117. __u8 hw_len;
  118. __u8 pa_len;
  119. #define AARP_PA_ALEN 4
  120. __u16 function;
  121. #define AARP_REQUEST 1
  122. #define AARP_REPLY 2
  123. #define AARP_PROBE 3
  124. __u8 hw_src[ETH_ALEN] __attribute__ ((packed));
  125. __u8 pa_src_zero __attribute__ ((packed));
  126. __u16 pa_src_net __attribute__ ((packed));
  127. __u8 pa_src_node __attribute__ ((packed));
  128. __u8 hw_dst[ETH_ALEN] __attribute__ ((packed));
  129. __u8 pa_dst_zero __attribute__ ((packed));
  130. __u16 pa_dst_net __attribute__ ((packed));
  131. __u8 pa_dst_node __attribute__ ((packed));
  132. };
  133. #define AARP_EXPIRY_TIME (5*60*HZ) /* Not specified - how long till we drop a resolved entry */
  134. #define AARP_HASH_SIZE 16 /* Size of hash table */
  135. #define AARP_TICK_TIME (HZ/5) /* Fast retransmission timer when resolving */
  136. #define AARP_RETRANSMIT_LIMIT 10 /* Send 10 requests then give up (2 seconds) */
  137. #define AARP_RESOLVE_TIME (10*HZ) /* Some value bigger than total retransmit time + a bit for last reply to appear and to stop continual requests */
  138. extern struct datalink_proto *ddp_dl, *aarp_dl;
  139. extern void aarp_proto_init(void);
  140. /* Inter module exports */
  141. /*
  142.  * Give a device find its atif control structure
  143.  */
  144. static inline struct atalk_iface *atalk_find_dev(struct net_device *dev)
  145. {
  146. return dev->atalk_ptr;
  147. }
  148. extern struct at_addr *atalk_find_dev_addr(struct net_device *dev);
  149. extern struct net_device *atrtr_get_dev(struct at_addr *sa);
  150. extern int aarp_send_ddp(struct net_device *dev,struct sk_buff *skb, struct at_addr *sa, void *hwaddr);
  151. extern void aarp_send_probe(struct net_device *dev, struct at_addr *addr);
  152. extern void aarp_device_down(struct net_device *dev);
  153. #ifdef MODULE
  154. extern void aarp_cleanup_module(void);
  155. #endif /* MODULE */
  156. #endif /* __KERNEL__ */
  157. #endif /* __LINUX_ATALK_H__ */