Added auto and free referer fields to the UrlData struct

This commit is contained in:
Daniel Stenberg 2000-06-20 11:23:31 +00:00
Родитель 1c6eccbf84
Коммит f22717fe6c
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -252,6 +252,7 @@ struct Configbits {
bool http_post; bool http_post;
bool http_put; bool http_put;
bool http_set_referer; bool http_set_referer;
bool http_auto_referer; /* set "correct" referer when following location: */
bool httpproxy; bool httpproxy;
bool mute; bool mute;
bool no_body; bool no_body;
@ -335,6 +336,9 @@ struct UrlData {
char *range; /* range, if used. See README for detailed specification on char *range; /* range, if used. See README for detailed specification on
this syntax. */ this syntax. */
char *postfields; /* if POST, set the fields' values here */ char *postfields; /* if POST, set the fields' values here */
bool free_referer; /* set TRUE if 'referer' points to a string we
allocated */
char *referer; char *referer;
char *useragent; /* User-Agent string */ char *useragent; /* User-Agent string */