FACT++  1.0
void getTime ( char *  buffer)

Definition at line 45 of file webServer.c.

References time.

Referenced by log_it(), sendData(), sendFile(), and sendSmiData().

46 {
47  time_t nowtime;
48  struct tm *nowtm;
49 
50  nowtime = time((time_t *)0);
51  nowtm = (struct tm *)gmtime(&nowtime);
52  strftime(buffer, 128, "%a, %d %b %Y %H:%M:%S GMT", nowtm);
53 }
Warning because the service this data corrsponds to might have been last updated longer ago than Local time
Definition: smartfact.txt:92
int buffer[BUFFSIZE]
Definition: db_dim_client.c:14

+ Here is the caller graph for this function: