aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/synctime.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-11-19 21:55:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-11-19 21:55:34 +0000
commitc6ff612f6e757f02d0258166ffbf530727e402dc (patch)
treef6082e877f55056dc55c6e888ea4206b2f816a08 /docs/examples/synctime.c
parent8db353e1d7225272cfd12e030f2df15d560e87f0 (diff)
Frank Teo provided an updated, mostly docs changed
Diffstat (limited to 'docs/examples/synctime.c')
-rw-r--r--docs/examples/synctime.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/examples/synctime.c b/docs/examples/synctime.c
index fc629ee33..cd8d0805d 100644
--- a/docs/examples/synctime.c
+++ b/docs/examples/synctime.c
@@ -9,6 +9,18 @@
*
* This example code only builds as-is on Windows.
*
+ * While Unix/Linux user, you do not need this software.
+ * You can achieve the same result as synctime using curl, awk and date.
+ * Set proxy as according to your network, but beware of proxy Cache-Control.
+ *
+ * To set your system clock, root access is required.
+ * # date -s "`curl -sI http://nist.time.gov/timezone.cgi?UTC/s/0 \
+ * | awk -F': ' '/Date: / {print $2}'`"
+ *
+ * To view remote webserver date and time.
+ * $ curl -sI http://nist.time.gov/timezone.cgi?UTC/s/0 \
+ * | awk -F': ' '/Date: / {print $2}'
+ *
* Synchronising your computer clock via Internet time server usually relies
* on DAYTIME, TIME, or NTP protocols. These protocols provide good accurate
* time synchronisation but it does not work very well through a
@@ -300,10 +312,11 @@ int main(int argc, char *argv[])
MthStr[LOCALTime.wMonth-1], LOCALTime.wYear,
LOCALTime.wHour, LOCALTime.wMinute, LOCALTime.wSecond,
LOCALTime.wMilliseconds);
- fprintf(stderr, "\nBefore HTTP. Date: %s%s\n\n", timeBuf, tzoneBuf);
+
+ fprintf(stderr, "Fetch: %s\n\n", conf->timeserver);
+ fprintf(stderr, "Before HTTP. Date: %s%s\n\n", timeBuf, tzoneBuf);
/* HTTP HEAD command to the Webserver */
- fprintf(stderr, "Fetch: %s\n", conf->timeserver);
SyncTime_CURL_Fetch(curl, conf->timeserver, "index.htm",
HTTP_COMMAND_HEAD);