projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Move DHCP negotiation timer into the DHCP connection application state structure...
[pub/USBasp.git]
/
Projects
/
Webserver
/
Lib
/
uip
/
uipopt.h
diff --git
a/Projects/Webserver/Lib/uip/uipopt.h
b/Projects/Webserver/Lib/uip/uipopt.h
index
8a09c72
..
5fca686
100644
(file)
--- a/
Projects/Webserver/Lib/uip/uipopt.h
+++ b/
Projects/Webserver/Lib/uip/uipopt.h
@@
-626,6
+626,8
@@
void uip_log(char *msg);
#include <stdbool.h>
#include <stdint.h>
+#include "timer.h"
+
typedef uint8_t u8_t;
typedef uint16_t u16_t;
typedef uint32_t u32_t;
@@
-716,7
+718,8
@@
typedef union
{
struct
{
- uint8_t CurrentState;
+ uint8_t CurrentState;
+ struct timer Timeout;
struct
{