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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux NET3: Internet Group Management Protocol  [IGMP]
  3.  *
  4.  * Authors:
  5.  * Alan Cox <Alan.Cox@linux.org>
  6.  *
  7.  * Extended to talk the BSD extended IGMP protocol of mrouted 3.6
  8.  *
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  */
  15. #ifndef _LINUX_IGMP_H
  16. #define _LINUX_IGMP_H
  17. /*
  18.  * IGMP protocol structures
  19.  */
  20. /*
  21.  * Header in on cable format
  22.  */
  23. struct igmphdr
  24. {
  25. __u8 type;
  26. __u8 code; /* For newer IGMP */
  27. __u16 csum;
  28. __u32 group;
  29. };
  30. #define IGMP_HOST_MEMBERSHIP_QUERY 0x11 /* From RFC1112 */
  31. #define IGMP_HOST_MEMBERSHIP_REPORT 0x12 /* Ditto */
  32. #define IGMP_DVMRP 0x13 /* DVMRP routing */
  33. #define IGMP_PIM 0x14 /* PIM routing */
  34. #define IGMP_TRACE 0x15
  35. #define IGMP_HOST_NEW_MEMBERSHIP_REPORT 0x16 /* New version of 0x11 */
  36. #define IGMP_HOST_LEAVE_MESSAGE  0x17
  37. #define IGMP_MTRACE_RESP 0x1e
  38. #define IGMP_MTRACE 0x1f
  39. /*
  40.  * Use the BSD names for these for compatibility
  41.  */
  42. #define IGMP_DELAYING_MEMBER 0x01
  43. #define IGMP_IDLE_MEMBER 0x02
  44. #define IGMP_LAZY_MEMBER 0x03
  45. #define IGMP_SLEEPING_MEMBER 0x04
  46. #define IGMP_AWAKENING_MEMBER 0x05
  47. #define IGMP_MINLEN 8
  48. #define IGMP_MAX_HOST_REPORT_DELAY 10 /* max delay for response to */
  49. /* query (in seconds) */
  50. #define IGMP_TIMER_SCALE 10 /* denotes that the igmphdr->timer field */
  51. /* specifies time in 10th of seconds  */
  52. #define IGMP_AGE_THRESHOLD 400 /* If this host don't hear any IGMP V1 */
  53. /* message in this period of time, */
  54. /* revert to IGMP v2 router. */
  55. #define IGMP_ALL_HOSTS htonl(0xE0000001L)
  56. #define IGMP_ALL_ROUTER  htonl(0xE0000002L)
  57. #define IGMP_LOCAL_GROUP htonl(0xE0000000L)
  58. #define IGMP_LOCAL_GROUP_MASK htonl(0xFFFFFF00L)
  59. /*
  60.  * struct for keeping the multicast list in
  61.  */
  62. #ifdef __KERNEL__
  63. /* ip_mc_socklist is real list now. Speed is not argument;
  64.    this list never used in fast path code
  65.  */
  66. struct ip_mc_socklist
  67. {
  68. struct ip_mc_socklist *next;
  69. int count;
  70. struct ip_mreqn multi;
  71. };
  72. struct ip_mc_list
  73. {
  74. struct in_device *interface;
  75. unsigned long multiaddr;
  76. struct ip_mc_list *next;
  77. struct timer_list timer;
  78. int users;
  79. atomic_t refcnt;
  80. spinlock_t lock;
  81. char tm_running;
  82. char reporter;
  83. char unsolicit_count;
  84. char loaded;
  85. };
  86. extern int ip_check_mc(struct in_device *dev, u32 mc_addr);
  87. extern int igmp_rcv(struct sk_buff *);
  88. extern int ip_mc_join_group(struct sock *sk, struct ip_mreqn *imr);
  89. extern int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr);
  90. extern void ip_mc_drop_socket(struct sock *sk);
  91. extern void ip_mr_init(void);
  92. extern void ip_mc_init_dev(struct in_device *);
  93. extern void ip_mc_destroy_dev(struct in_device *);
  94. extern void ip_mc_up(struct in_device *);
  95. extern void ip_mc_down(struct in_device *);
  96. extern int ip_mc_dec_group(struct in_device *in_dev, u32 addr);
  97. extern void ip_mc_inc_group(struct in_device *in_dev, u32 addr);
  98. #endif
  99. #endif