syncing with local edit

This commit is contained in:
Daniel Stenberg 2000-01-10 23:36:14 +00:00
parent 067a75e895
commit 26e8ccc631
15 changed files with 427 additions and 1066 deletions

View file

@ -52,8 +52,8 @@
*
* ------------------------------------------------------------
* $Log$
* Revision 1.1 1999-12-29 14:21:22 bagder
* Initial revision
* Revision 1.2 2000-01-10 23:36:14 bagder
* syncing with local edit
*
* Revision 1.4 1999/09/06 06:59:40 dast
* Changed email info

View file

@ -79,7 +79,7 @@
#include "progress.h"
#include "upload.h"
#include "download.h"
#include "escape.h"
/* returns last node in linked list */
static struct curl_slist *slist_get_last(struct curl_slist *list)
@ -1014,6 +1014,28 @@ UrgError _ftp(struct UrlData *data,
return URG_FTP_WRITE_ERROR;
}
/* Send any post-transfer QUOTE strings? */
if(data->postquote) {
qitem = data->postquote;
/* Send all QUOTE strings in same order as on command-line */
while (qitem) {
/* Send string */
if (qitem->data) {
sendf(data->firstsocket, data, "%s\r\n", qitem->data);
nread = GetLastResponse(data->firstsocket, buf, data);
if (buf[0] != '2') {
failf(data, "QUOT string not accepted: %s",
qitem->data);
return URG_FTP_QUOTE_ERROR;
}
}
qitem = qitem->next;
}
}
return URG_OK;
}

View file

@ -49,8 +49,8 @@
*
* ------------------------------------------------------------
* $Log$
* Revision 1.1 1999-12-29 14:21:29 bagder
* Initial revision
* Revision 1.2 2000-01-10 23:36:14 bagder
* syncing with local edit
*
* Revision 1.4 1999/09/06 06:59:40 dast
* Changed email info

View file

@ -51,8 +51,8 @@
*
* ------------------------------------------------------------
* $Log$
* Revision 1.1 1999-12-29 14:21:30 bagder
* Initial revision
* Revision 1.2 2000-01-10 23:36:14 bagder
* syncing with local edit
*
* Revision 1.3 1999/09/06 06:59:40 dast
* Changed email info

View file

@ -51,8 +51,8 @@
*
* ------------------------------------------------------------
* $Log$
* Revision 1.1 1999-12-29 14:21:35 bagder
* Initial revision
* Revision 1.2 2000-01-10 23:36:15 bagder
* syncing with local edit
*
* Revision 1.3 1999/09/06 06:59:41 dast
* Changed email info

View file

@ -413,6 +413,9 @@ UrgError curl_urlget(UrgTag tag, ...)
case URGTAG_USERPWD:
data->userpwd = (char *)param_obj;
break;
case URGTAG_POSTQUOTE:
data->postquote = (struct curl_slist *)param_obj;
break;
case URGTAG_PROXYUSERPWD:
data->proxyuserpwd = (char *)param_obj;
break;

View file

@ -176,7 +176,8 @@ struct UrlData {
X509* server_cert;
#endif /* USE_SSLEAY */
long crlf;
struct curl_slist *quote;
struct curl_slist *quote; /* before the transfer */
struct curl_slist *postquote; /* after the transfer */
TimeCond timecondition;
time_t timevalue;