summaryrefslogtreecommitdiff
path: root/nuttx/net/igmp
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-21 11:16:55 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-21 11:16:55 -0600
commit4c36b97235c919e8001e08a6120fc86aae9dff3e (patch)
tree8bb5885dfea494406caec7f4738d7349e50ecce6 /nuttx/net/igmp
parent53780a7956316b463230e20a80a6a9b1e3d05bf1 (diff)
downloadpx4-nuttx-4c36b97235c919e8001e08a6120fc86aae9dff3e.tar.gz
px4-nuttx-4c36b97235c919e8001e08a6120fc86aae9dff3e.tar.bz2
px4-nuttx-4c36b97235c919e8001e08a6120fc86aae9dff3e.zip
wdog.h does not contain any application interface, only internal OS interface. Further, it is non-standard. Move wdog.h from include/ to include/nuttx. For the same reason, move the description of the watchdog timer interfaces from the Users Guide to the Porting Guide.
Diffstat (limited to 'nuttx/net/igmp')
-rw-r--r--nuttx/net/igmp/igmp_group.c6
-rw-r--r--nuttx/net/igmp/igmp_input.c4
-rw-r--r--nuttx/net/igmp/igmp_leave.c4
-rw-r--r--nuttx/net/igmp/igmp_timer.c4
4 files changed, 9 insertions, 9 deletions
diff --git a/nuttx/net/igmp/igmp_group.c b/nuttx/net/igmp/igmp_group.c
index 0d70c10b1..fba472757 100644
--- a/nuttx/net/igmp/igmp_group.c
+++ b/nuttx/net/igmp/igmp_group.c
@@ -2,7 +2,7 @@
* net/igmp/igmp_group.c
* IGMP group data structure management logic
*
- * Copyright (C) 2010, 2013 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2010, 2013-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* The NuttX implementation of IGMP was inspired by the IGMP add-on for the
@@ -47,14 +47,14 @@
#include <stdlib.h>
#include <string.h>
-#include <wdog.h>
#include <queue.h>
#include <debug.h>
#include <arch/irq.h>
+
#include <nuttx/arch.h>
+#include <nuttx/wdog.h>
#include <nuttx/kmalloc.h>
-
#include <nuttx/net/net.h>
#include <nuttx/net/ip.h>
#include <nuttx/net/igmp.h>
diff --git a/nuttx/net/igmp/igmp_input.c b/nuttx/net/igmp/igmp_input.c
index 93087b07e..04ec4709c 100644
--- a/nuttx/net/igmp/igmp_input.c
+++ b/nuttx/net/igmp/igmp_input.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/igmp/igmp_input.c
*
- * Copyright (C) 2010 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2010, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* The NuttX implementation of IGMP was inspired by the IGMP add-on for the
@@ -43,10 +43,10 @@
#include <nuttx/config.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
+#include <nuttx/wdog.h>
#include <nuttx/net/netconfig.h>
#include <nuttx/net/netstats.h>
#include <nuttx/net/ip.h>
diff --git a/nuttx/net/igmp/igmp_leave.c b/nuttx/net/igmp/igmp_leave.c
index 50742a18f..521a437e4 100644
--- a/nuttx/net/igmp/igmp_leave.c
+++ b/nuttx/net/igmp/igmp_leave.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/igmp/igmp_leave.c
*
- * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2010-2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* The NuttX implementation of IGMP was inspired by the IGMP add-on for the
@@ -43,12 +43,12 @@
#include <nuttx/config.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
#include <netinet/in.h>
+#include <nuttx/wdog.h>
#include <nuttx/net/netconfig.h>
#include <nuttx/net/net.h>
#include <nuttx/net/netstats.h>
diff --git a/nuttx/net/igmp/igmp_timer.c b/nuttx/net/igmp/igmp_timer.c
index b257204c4..5465a68f7 100644
--- a/nuttx/net/igmp/igmp_timer.c
+++ b/nuttx/net/igmp/igmp_timer.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/igmp/igmp_timer.c
*
- * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2010-2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* The NuttX implementation of IGMP was inspired by the IGMP add-on for the
@@ -44,10 +44,10 @@
#include <nuttx/config.h>
#include <nuttx/compiler.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
+#include <nuttx/wdog.h>
#include <nuttx/net/netconfig.h>
#include <nuttx/net/net.h>
#include <nuttx/net/netstats.h>