being unreadable. Hopefully this makes the thing more clear and readable. Some improvements could be done to the upload_file_* thing. As there's really no need to pass argc and argv to those. And passing argv to that is an overkill Solution: To create a const char* variable and save the filename in there and pass that to the functions. Simple as that. But i'm a lazy motherfucker and I'm tired. Boss.
30 lines
520 B
C
30 lines
520 B
C
#pragma once
|
|
#include <curl/curl.h>
|
|
#include <libconfig.h>
|
|
#include <stdbool.h>
|
|
|
|
|
|
/* Parse the config file */
|
|
void
|
|
parse_config_file(FILE *config);
|
|
|
|
/* Print the current settings */
|
|
void
|
|
print_config();
|
|
|
|
/* Internal variables */
|
|
|
|
extern CURL *easy_handle;
|
|
|
|
extern char *buffer;
|
|
/* Config variables */
|
|
|
|
extern bool ipv6_flag, ipv4_flag, http_proxy_flag,
|
|
socks_proxy_flag, silent_flag, paste_flag;
|
|
|
|
extern char *http_proxy_url, *socks_proxy_url;
|
|
extern char *ssh_key_path;
|
|
|
|
extern char *server;
|
|
extern const char *path;
|
|
|