mirror of
https://github.com/curl/curl.git
synced 2026-08-26 04:13:31 +03:00
tool_cfgable: Renamed Configurable structure to OperationConfig
To allow for the addition of a global config structure and prevent confusion between the two.
This commit is contained in:
parent
6512e93be1
commit
705a4cb549
32 changed files with 99 additions and 103 deletions
|
|
@ -23,7 +23,7 @@
|
|||
***************************************************************************/
|
||||
#include "tool_setup.h"
|
||||
|
||||
struct getout *new_getout(struct Configurable *config);
|
||||
struct getout *new_getout(struct OperationConfig *config);
|
||||
|
||||
ParameterError file2string(char **bufp, FILE *file);
|
||||
|
||||
|
|
@ -36,19 +36,19 @@ ParameterError str2unum(long *val, const char *str);
|
|||
ParameterError str2double(double *val, const char *str);
|
||||
ParameterError str2udouble(double *val, const char *str);
|
||||
|
||||
long proto2num(struct Configurable *config, long *val, const char *str);
|
||||
long proto2num(struct OperationConfig *config, long *val, const char *str);
|
||||
|
||||
ParameterError str2offset(curl_off_t *val, const char *str);
|
||||
|
||||
CURLcode get_args(struct Configurable *config, const size_t index);
|
||||
CURLcode get_args(struct OperationConfig *config, const size_t i);
|
||||
|
||||
ParameterError add2list(struct curl_slist **list, const char *ptr);
|
||||
|
||||
int ftpfilemethod(struct Configurable *config, const char *str);
|
||||
int ftpfilemethod(struct OperationConfig *config, const char *str);
|
||||
|
||||
int ftpcccmethod(struct Configurable *config, const char *str);
|
||||
int ftpcccmethod(struct OperationConfig *config, const char *str);
|
||||
|
||||
long delegation(struct Configurable *config, char *str);
|
||||
long delegation(struct OperationConfig *config, char *str);
|
||||
|
||||
#endif /* HEADER_CURL_TOOL_PARAMHLP_H */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue