add Curl_ prefix to conform with cURL naming standards

This commit is contained in:
Yang Tse 2010-06-09 15:45:46 +02:00
parent d3714b016d
commit 6a0d3233ff
3 changed files with 15 additions and 13 deletions

View File

@ -3474,7 +3474,7 @@ static void wc_data_dtor(void *ptr)
{ {
struct ftp_wc_tmpdata *tmp = ptr; struct ftp_wc_tmpdata *tmp = ptr;
if(tmp) if(tmp)
ftp_parselist_data_free(&tmp->parser); Curl_ftp_parselist_data_free(&tmp->parser);
Curl_safefree(tmp); Curl_safefree(tmp);
} }
@ -3525,7 +3525,7 @@ static CURLcode init_wc_data(struct connectdata *conn)
} }
/* INITIALIZE parselist structure */ /* INITIALIZE parselist structure */
ftp_tmp->parser = ftp_parselist_data_alloc(); ftp_tmp->parser = Curl_ftp_parselist_data_alloc();
if(!ftp_tmp->parser) if(!ftp_tmp->parser)
return CURLE_OUT_OF_MEMORY; return CURLE_OUT_OF_MEMORY;
@ -3545,7 +3545,7 @@ static CURLcode init_wc_data(struct connectdata *conn)
/* backup old write_function */ /* backup old write_function */
ftp_tmp->backup.write_function = conn->data->set.fwrite_func; ftp_tmp->backup.write_function = conn->data->set.fwrite_func;
/* parsing write function (callback included directly from ftplistparser.c) */ /* parsing write function (callback included directly from ftplistparser.c) */
conn->data->set.fwrite_func = ftp_parselist; conn->data->set.fwrite_func = Curl_ftp_parselist;
/* backup old file descriptor */ /* backup old file descriptor */
ftp_tmp->backup.file_descriptor = conn->data->set.out; ftp_tmp->backup.file_descriptor = conn->data->set.out;
/* let the writefunc callback know what curl pointer is working with */ /* let the writefunc callback know what curl pointer is working with */
@ -3586,7 +3586,7 @@ static CURLcode wc_statemach(struct connectdata *conn)
conn->data->set.out = ftp_tmp->backup.file_descriptor; conn->data->set.out = ftp_tmp->backup.file_descriptor;
wildcard->state = CURLWC_DOWNLOADING; wildcard->state = CURLWC_DOWNLOADING;
if(ftp_parselist_geterror(ftp_tmp->parser)) { if(Curl_ftp_parselist_geterror(ftp_tmp->parser)) {
/* error found in LIST parsing */ /* error found in LIST parsing */
wildcard->state = CURLWC_CLEAN; wildcard->state = CURLWC_CLEAN;
return wc_statemach(conn); return wc_statemach(conn);
@ -3670,7 +3670,7 @@ static CURLcode wc_statemach(struct connectdata *conn)
case CURLWC_CLEAN: case CURLWC_CLEAN:
ret = CURLE_OK; ret = CURLE_OK;
if(ftp_tmp) { if(ftp_tmp) {
ret = ftp_parselist_geterror(ftp_tmp->parser); ret = Curl_ftp_parselist_geterror(ftp_tmp->parser);
} }
wildcard->state = ret ? CURLWC_ERROR : CURLWC_DONE; wildcard->state = ret ? CURLWC_ERROR : CURLWC_DONE;
break; break;

View File

@ -188,7 +188,7 @@ struct ftp_parselist_data {
} offsets; } offsets;
}; };
struct ftp_parselist_data *ftp_parselist_data_alloc(void) struct ftp_parselist_data *Curl_ftp_parselist_data_alloc(void)
{ {
struct ftp_parselist_data *parselist_data = struct ftp_parselist_data *parselist_data =
malloc(sizeof(struct ftp_parselist_data)); malloc(sizeof(struct ftp_parselist_data));
@ -199,7 +199,7 @@ struct ftp_parselist_data *ftp_parselist_data_alloc(void)
} }
void ftp_parselist_data_free(struct ftp_parselist_data **pl_data) void Curl_ftp_parselist_data_free(struct ftp_parselist_data **pl_data)
{ {
if(*pl_data) if(*pl_data)
free(*pl_data); free(*pl_data);
@ -207,7 +207,7 @@ void ftp_parselist_data_free(struct ftp_parselist_data **pl_data)
} }
CURLcode ftp_parselist_geterror(struct ftp_parselist_data *pl_data) CURLcode Curl_ftp_parselist_geterror(struct ftp_parselist_data *pl_data)
{ {
return pl_data->error; return pl_data->error;
} }
@ -365,7 +365,8 @@ static CURLcode ftp_pl_insert_finfo(struct connectdata *conn,
return CURLE_OK; return CURLE_OK;
} }
size_t ftp_parselist(char *buffer, size_t size, size_t nmemb, void *connptr) size_t Curl_ftp_parselist(char *buffer, size_t size, size_t nmemb,
void *connptr)
{ {
size_t bufflen = size*nmemb; size_t bufflen = size*nmemb;
struct connectdata *conn = (struct connectdata *)connptr; struct connectdata *conn = (struct connectdata *)connptr;

View File

@ -25,14 +25,15 @@
#include <curl/curl.h> #include <curl/curl.h>
/* WRITEFUNCTION callback for parsing LIST responses */ /* WRITEFUNCTION callback for parsing LIST responses */
size_t ftp_parselist(char *buffer, size_t size, size_t nmemb, void *connptr); size_t Curl_ftp_parselist(char *buffer, size_t size, size_t nmemb,
void *connptr);
struct ftp_parselist_data; /* defined inside ftplibparser.c */ struct ftp_parselist_data; /* defined inside ftplibparser.c */
CURLcode ftp_parselist_geterror(struct ftp_parselist_data *pl_data); CURLcode Curl_ftp_parselist_geterror(struct ftp_parselist_data *pl_data);
struct ftp_parselist_data *ftp_parselist_data_alloc(void); struct ftp_parselist_data *Curl_ftp_parselist_data_alloc(void);
void ftp_parselist_data_free(struct ftp_parselist_data **pl_data); void Curl_ftp_parselist_data_free(struct ftp_parselist_data **pl_data);
#endif /* HEADER_CURL_FTPLISTPARSER_H */ #endif /* HEADER_CURL_FTPLISTPARSER_H */