Move DHCP negotiation timer into the DHCP connection application state structure...
[pub/USBasp.git] / Projects / Webserver / Lib / HTTPServerApp.h
index 33a647b..d212cf2 100644 (file)
@@ -40,6 +40,8 @@
                #include <avr/pgmspace.h>\r
                #include <string.h>\r
                \r
+               #include <LUFA/Version.h>\r
+\r
                #include <uip.h>\r
                #include <ff.h>\r
        \r
@@ -59,8 +61,8 @@
                /** Type define for a MIME type handler. */\r
                typedef struct\r
                {\r
-                       char Extension[4]; /**< 3 or less character file extension */\r
-                       char MIMEType[30]; /**< Appropriate MIME type to send when the extension is encountered */\r
+                       char* Extension; /**< File extension (no leading '.' character) */\r
+                       char* MIMEType;  /**< Appropriate MIME type to send when the extension is encountered */\r
                } MIME_Type_t;\r
        \r
        /* Macros: */\r