diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-04-18 15:58:33 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-04-18 16:43:57 +0100 |
commit | ca63d4feba34b5c48bd75e62fd6cd05f5bf61046 (patch) | |
tree | f6bfb211b263343bd33680dc39faa9a67926ddfa /lib/imap.h | |
parent | f804378d16bba22bc22afebb6ffe1858cfd9edf6 (diff) | |
download | curl-ca63d4feba34b5c48bd75e62fd6cd05f5bf61046.tar.gz |
imap: Added support for parsing URL query strings
Added support for parsing query strings from the URL as defined by
RFC-5092.
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/imap.h b/lib/imap.h index 53d202dcc..821da6788 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -68,6 +68,7 @@ struct IMAP { char *uidvalidity; /* UIDVALIDITY to check in select */ char *uid; /* Message UID to fetch */ char *section; /* Message SECTION to fetch */ + char *query; /* Query to search for */ char *custom; /* Custom request */ char *custom_params; /* Parameters for the custom request */ }; |