From d5135803d4021ef6fb2d69394cd28fdd665a8bca Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 6 Jul 2010 02:07:49 +0000 Subject: More IGMP header file stuff git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2776 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/include/net/uip/uip-igmp.h | 5 +++++ nuttx/include/net/uip/uip.h | 1 + 2 files changed, 6 insertions(+) diff --git a/nuttx/include/net/uip/uip-igmp.h b/nuttx/include/net/uip/uip-igmp.h index 869a7e762..7ad105ec3 100755 --- a/nuttx/include/net/uip/uip-igmp.h +++ b/nuttx/include/net/uip/uip-igmp.h @@ -67,6 +67,11 @@ #define IGMPv3_MEMBERSHIP_REPORT 0x22 /* IGMP Ver. 3 Membership Report */ #define IGMP_LEAVE_GROUP 0x17 /* Leave Group */ +/* Header sizes */ + +#define UIP_IGMPH_LEN 4 /* Size of IGMP header */ +#define UIP_IPIGMPH_LEN (UIP_IGMPH_LEN + UIP_IPH_LEN) /* Size of IP + IGMP header */ + /**************************************************************************** * Public Types ****************************************************************************/ diff --git a/nuttx/include/net/uip/uip.h b/nuttx/include/net/uip/uip.h index fccfebe31..4589838a0 100644 --- a/nuttx/include/net/uip/uip.h +++ b/nuttx/include/net/uip/uip.h @@ -137,6 +137,7 @@ #define UIP_APPDATA_SIZE (CONFIG_NET_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN) #define UIP_PROTO_ICMP 1 +#define UIP_PROTO_IGMP 2 #define UIP_PROTO_TCP 6 #define UIP_PROTO_UDP 17 #define UIP_PROTO_ICMP6 58 -- cgit v1.2.3