diff options
Diffstat (limited to 'include/net.h')
-rw-r--r-- | include/net.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/net.h b/include/net.h index 9e55430..e50c381 100644 --- a/include/net.h +++ b/include/net.h @@ -335,7 +335,7 @@ extern int NetState; /* Network loop state */ extern int NetRestartWrap; /* Tried all network devices */ #endif -typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS } proto_t; +typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP } proto_t; /* from net/net.c */ extern char BootFile[128]; /* Boot File name */ @@ -350,6 +350,11 @@ extern ushort CDPNativeVLAN; extern ushort CDPApplianceVLAN; #endif +#if (CONFIG_COMMANDS & CFG_CMD_SNTP) +extern IPaddr_t NetNtpServerIP; /* the ip address to NTP */ +extern int NetTimeOffset; /* offset time from UTC */ +#endif + /* Initialize the network adapter */ extern int NetLoop(proto_t); |