diff options
Diffstat (limited to 'Projects/Webserver/Lib')
| -rw-r--r-- | Projects/Webserver/Lib/DHCPClientApp.c | 4 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/DHCPClientApp.h | 1 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/DHCPCommon.c | 4 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/DHCPCommon.h | 2 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/DHCPServerApp.c | 4 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/DHCPServerApp.h | 1 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/HTTPServerApp.h | 2 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/TELNETServerApp.c | 4 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/TELNETServerApp.h | 2 | ||||
| -rw-r--r-- | Projects/Webserver/Lib/uip/uipopt.h | 2 | 
10 files changed, 18 insertions, 8 deletions
| diff --git a/Projects/Webserver/Lib/DHCPClientApp.c b/Projects/Webserver/Lib/DHCPClientApp.c index 1a564ca3e..91c0f1f06 100644 --- a/Projects/Webserver/Lib/DHCPClientApp.c +++ b/Projects/Webserver/Lib/DHCPClientApp.c @@ -28,8 +28,6 @@    this software.  */ -#if defined(ENABLE_DHCP_CLIENT) || defined(__DOXYGEN__) -  /** \file   *   *  DHCP Client Application. When connected to the uIP stack, this will retrieve IP configuration settings from the @@ -39,6 +37,8 @@  #define  INCLUDE_FROM_DHCPCLIENTAPP_C  #include "DHCPClientApp.h" +#if defined(ENABLE_DHCP_CLIENT) || defined(__DOXYGEN__) +  /** Initialization function for the DHCP client. */  void DHCPClientApp_Init(void)  { diff --git a/Projects/Webserver/Lib/DHCPClientApp.h b/Projects/Webserver/Lib/DHCPClientApp.h index 21c5e435a..b5ce11cbc 100644 --- a/Projects/Webserver/Lib/DHCPClientApp.h +++ b/Projects/Webserver/Lib/DHCPClientApp.h @@ -41,6 +41,7 @@  		#include <uip.h> +		#include "Config/AppConfig.h"  		#include "../Webserver.h"  		#include "DHCPCommon.h" diff --git a/Projects/Webserver/Lib/DHCPCommon.c b/Projects/Webserver/Lib/DHCPCommon.c index f2b999756..b0fe37d04 100644 --- a/Projects/Webserver/Lib/DHCPCommon.c +++ b/Projects/Webserver/Lib/DHCPCommon.c @@ -28,8 +28,6 @@    this software.  */ -#if defined(ENABLE_DHCP_CLIENT) || defined(ENABLE_DHCP_SERVER) || defined(__DOXYGEN__) -  /** \file   *   *  Common DHCP routines to manage DHCP packet data. @@ -37,6 +35,8 @@  #include "DHCPCommon.h" +#if defined(ENABLE_DHCP_CLIENT) || defined(ENABLE_DHCP_SERVER) || defined(__DOXYGEN__) +  /** Sets the given DHCP option in the DHCP packet's option list. This automatically moves the   *  end of options terminator past the new option in the options list.   * diff --git a/Projects/Webserver/Lib/DHCPCommon.h b/Projects/Webserver/Lib/DHCPCommon.h index 797aa571b..dc8dcdfbc 100644 --- a/Projects/Webserver/Lib/DHCPCommon.h +++ b/Projects/Webserver/Lib/DHCPCommon.h @@ -41,6 +41,8 @@  		#include <stdbool.h>  		#include <string.h> +		#include "Config/AppConfig.h" +		  		#include <uip.h>  	/* Macros: */ diff --git a/Projects/Webserver/Lib/DHCPServerApp.c b/Projects/Webserver/Lib/DHCPServerApp.c index e2b72af27..05ae4e9e2 100644 --- a/Projects/Webserver/Lib/DHCPServerApp.c +++ b/Projects/Webserver/Lib/DHCPServerApp.c @@ -28,8 +28,6 @@    this software.  */ -#if defined(ENABLE_DHCP_SERVER) || defined(__DOXYGEN__) -  /** \file   *   *  DHCP Server Application. When connected to the uIP stack, this will send IP configuration settings to a @@ -39,6 +37,8 @@  #define  INCLUDE_FROM_DHCPSERVERAPP_C  #include "DHCPServerApp.h" +#if defined(ENABLE_DHCP_SERVER) || defined(__DOXYGEN__) +  struct uip_conn* BroadcastConnection;  uint8_t LeasedIPs[255 / 8]; diff --git a/Projects/Webserver/Lib/DHCPServerApp.h b/Projects/Webserver/Lib/DHCPServerApp.h index 151319b5d..d41df3776 100644 --- a/Projects/Webserver/Lib/DHCPServerApp.h +++ b/Projects/Webserver/Lib/DHCPServerApp.h @@ -41,6 +41,7 @@  		#include <uip.h> +		#include "Config/AppConfig.h"  		#include "../Webserver.h"  		#include "DHCPCommon.h" diff --git a/Projects/Webserver/Lib/HTTPServerApp.h b/Projects/Webserver/Lib/HTTPServerApp.h index 526e75804..e3678e845 100644 --- a/Projects/Webserver/Lib/HTTPServerApp.h +++ b/Projects/Webserver/Lib/HTTPServerApp.h @@ -41,6 +41,8 @@  		#include <string.h>  		#include <LUFA/Version.h> +		 +		#include "Config/AppConfig.h"  		#include <uip.h>  		#include <ff.h> diff --git a/Projects/Webserver/Lib/TELNETServerApp.c b/Projects/Webserver/Lib/TELNETServerApp.c index 3fffae1d1..ff829b9ef 100644 --- a/Projects/Webserver/Lib/TELNETServerApp.c +++ b/Projects/Webserver/Lib/TELNETServerApp.c @@ -28,8 +28,6 @@    this software.  */ -#if defined(ENABLE_TELNET_SERVER) || defined(__DOXYGEN__) -  /** \file   *   *  TELNET Webserver Application. When connected to the uIP stack, @@ -39,6 +37,8 @@  #define  INCLUDE_FROM_TELNETSERVERAPP_C  #include "TELNETServerApp.h" +#if defined(ENABLE_TELNET_SERVER) || defined(__DOXYGEN__) +  /** Welcome message to send to a TELNET client when a connection is first made. */  const char PROGMEM WelcomeHeader[] = "********************************************\r\n"                                       "*       LUFA uIP Webserver (TELNET)        *\r\n" diff --git a/Projects/Webserver/Lib/TELNETServerApp.h b/Projects/Webserver/Lib/TELNETServerApp.h index 5f3e864c9..df580f53b 100644 --- a/Projects/Webserver/Lib/TELNETServerApp.h +++ b/Projects/Webserver/Lib/TELNETServerApp.h @@ -43,6 +43,8 @@  		#include <uip.h> +		#include "Config/AppConfig.h" +  	/* Macros: */  		/** TCP listen port for incoming TELNET traffic. */  		#define TELNET_SERVER_PORT  23 diff --git a/Projects/Webserver/Lib/uip/uipopt.h b/Projects/Webserver/Lib/uip/uipopt.h index 17f703312..520c03f25 100644 --- a/Projects/Webserver/Lib/uip/uipopt.h +++ b/Projects/Webserver/Lib/uip/uipopt.h @@ -62,6 +62,8 @@  #ifndef __UIPOPT_H__  #define __UIPOPT_H__ +#include "Config/AppConfig.h" +  #ifndef UIP_LITTLE_ENDIAN  #define UIP_LITTLE_ENDIAN  3412  #endif /* UIP_LITTLE_ENDIAN */ | 
