|
@@ -410,11 +410,18 @@ static struct lws_protocols protocols[] =
|
|
|
|
|
|
void* ConnectWsServer(void* data) //int ConnectWsServer()
|
|
|
{
|
|
|
-
|
|
|
struct lws_context_creation_info ContextInfo;
|
|
|
struct lws_client_connect_info ConnInfo;
|
|
|
int use_ssl=0;
|
|
|
|
|
|
+ // If internet available synchronize datetime with ntp server
|
|
|
+ if(GetInternetConn() == 1)
|
|
|
+ {
|
|
|
+ DEBUG_INFO("NTP synchronize with Microsoft\n", system("/usr/sbin/ntpd -nqp time.windows.com &"));
|
|
|
+ DEBUG_INFO("NTP synchronize with China\n", system("/usr/sbin/ntpd -nqp cn.ntp.org.cn &"));
|
|
|
+ DEBUG_INFO("NTP synchronize with Taiwan\n", system("/usr/sbin/ntpd -nqp tock.stdtime.gov.tw &"));
|
|
|
+ }
|
|
|
+
|
|
|
if(context!=NULL)
|
|
|
{
|
|
|
pthread_detach(pthread_self());
|