curl_getdate
NAMESYNOPSIS
DESCRIPTION
PARSING DATES AND TIMES
EXAMPLES
STANDARDS
RETURN VALUE
REWRITE
NAME
curl_getdate - Convert a date string to number of seconds since January 1, 1970
SYNOPSIS
#include <curl/curl.h>
time_t curl_getdate(char *datestring, time_t *now );
DESCRIPTION
This function returns the number of seconds since January 1st 1970 in the UTC time zone, for the date and time that the datestring parameter specifies. The now parameter is not used, pass a NULL there.
NOTE: This function was rewritten for the 7.12.2 release and this documentation covers the functionality of the new one. The new one is not feature-complete with the old one, but most of the formats supported by the new one was supported by the old too.
PARSING DATES AND TIMES
A
"date" is a string containing several items
separated by whitespace. The order of the items is
immaterial. A date string may contain many flavors of items:
calendar date items
Can be specified several ways. Month names can only be three-letter english abbreviations, numbers can be zero-prefixed and the year may use 2 or 4 digits. Examples: 06 Nov 1994, 06-Nov-94 and Nov-94 6.
time of the day items
This string specifies the time on a given day. You must specify it with 6 digits with two colons: HH:MM:SS. To not include the time in a date string, will make the function assume 00:00:00. Example: 18:19:21.
time zone items
Specifies international time zone. There are a few acronyms supported, but in general you should instead use the specific relative time compared to UTC. Supported formats include: -1200, MST, +0100.
day of the week items
Specifies a day of the week. Days of the week may be spelled out in full (using english): ‘Sunday’, ‘Monday’, etc or they may be abbreviated to their first three letters. This is usually not info that adds anything.
pure numbers
If a decimal number of the form YYYYMMDD appears, then YYYY is read as the year, MM as the month number and DD as the day of the month, for the specified calendar date.
EXAMPLES
Sun, 06 Nov
1994 08:49:37 GMT
Sunday, 06-Nov-94 08:49:37 GMT
Sun Nov 6 08:49:37 1994
06 Nov 1994 08:49:37 GMT
06-Nov-94 08:49:37 GMT
Nov 6 08:49:37 1994
06 Nov 1994 08:49:37
06-Nov-94 08:49:37
1994 Nov 6 08:49:37
GMT 08:49:37 06-Nov-94 Sunday
94 6 Nov 08:49:37
1994 Nov 6
06-Nov-94
Sun Nov 6 94
1994.Nov.6
Sun/Nov/6/94/GMT
Sun, 06 Nov 1994 08:49:37 CET
06 Nov 1994 08:49:37 EST
Sun, 12 Sep 2004 15:05:58 -0700
Sat, 11 Sep 2004 21:32:11 +0200
20040912 15:05:58 -0700
20040911 +0200
STANDARDS
This parser was written to handle date formats specified in RFC 822 (including the update in RFC 1123) using time zone name or time zone delta and RFC 850 (obsoleted by RFC 1036) and ANSI C’s asctime() format. These formats are the only ones RFC2616 says HTTP applications may use.
RETURN VALUE
This function returns -1 when it fails to parse the date string. Otherwise it returns the number of seconds as described.
If the year is larger than 2037 on systems with 32 bit time_t, this function will return 0x7fffffff (since that is the largest possible signed 32 bit number).
Having a 64 bit time_t is not a guarantee that dates beyond 03:14:07 UTC, January 19, 2038 will work fine. On systems with a 64 bit time_t but with a crippled mktime(), curl_getdate will return -1 in this case.
REWRITE
The former version of this function was built with yacc and was not only very large, it was also never quite understood and it wasn’t possible to build with non-GNU tools since only GNU Bison could make it thread-safe!
The rewrite was done for 7.12.2. The new one is much smaller and uses simpler code.
More Linux Commands
manpages/orbd-java-1.8.0-openjdk.1.html
orbd-java-1.8.0-openjdk(1) Enables clients to locate and cal
The orbd command enables clients to transparently locate and call persistent objects on servers in the CORBA environment. The Server Manager included with the o
manpages/iso_8859-10.7.html
iso_8859-10(7) - ISO 8859-10 character set encoded in octal,
The ISO 8859 standard includes several 8-bit extensions to the ASCII character set (also known as ISO 646-IRV). ISO 8859-10 encodes the characters used in Nordi
manpages/SDL_Surface.3.html
SDL_Surface(3) - Graphical Surface Structure (Man Page).....
SDL_Surfaces represent areas of graphical memory, memory that can be drawn to. The video framebuffer is returned as a SDL_Surface by SDL_SetVideoMode and SDL_Ge
manpages/glVertex3i.3gl.html
glVertex3i(3gl) - specify a vertex - Linux manual page......
glVertex commands are used within glBegin/glEnd pairs to specify point, line, and polygon vertices. The current color, normal, and texture coordinates are assoc
manpages/ppmtogif.1.html
ppmtogif(1) (Commands - Linux manual page).................
ppmtogif still exists as a separate program for backward compatibility, but it runs pamtogif to do the essential work. The compatibility ppmtogif interprets ...
manpages/actctrl.8.html
actctrl.8 (Manual - Linux man page)........................
actctrl is used to setup the IBM Active 2000 ISDN device driver and for downloading the firmware into the ISDN card. The use of actctrl makes sense, if you are
manpages/SDL_PeepEvents.3.html
SDL_PeepEvents(3) - Checks the event queue for messages and
Checks the event queue for messages and optionally returns them. If action is SDL_ADDEVENT, up to numevents events will be added to the back of the event queue.
manpages/Tcl_SetIntObj.3.html
Tcl_SetIntObj(3) - manipulate Tcl objects as integer values
These procedures are used to create, modify, and read Tcl objects that &#9474; hold integral values. &#9474; The different routines exist to accommodate differe
manpages/gnutls_cipher_encrypt.3.html
gnutls_cipher_encrypt(3) - API function - Linux manual page
This function will encrypt the given data using the algorithm specified by the context. RETURNS Zero or a negative error code on error. SINCE 2.10.0 REPORTING B
manpages/form_sub.3form.html
form_sub(3form) - make and break form window and subwindow a
Every form has an associated pair of curses windows. The form window displays any title and border associated with the window; the form subwindow displays the i
manpages/XSendExtensionEvent.3.html
XSendExtensionEvent(3) - send input extension events to a cl
The XSendExtensionEvent request identifies the destination window, determines which clients should receive the specified events, and ignores any active grabs. T
manpages/fuser.1.html
fuser(1) - identify processes using files or sockets........
fuser displays the PIDs of processes using the specified files or file systems. In the default display mode, each file name is followed by a letter denoting the
