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.
39 lines
672 B
C
39 lines
672 B
C
#pragma once
|
|
#include <stdlib.h>
|
|
|
|
/* Function used from curl to write data to a buffer */
|
|
size_t
|
|
write_data(void *buffer, size_t size, size_t nmemb, void *userp);
|
|
|
|
/* Print usage message (when nothing is given to sakisafecli) */
|
|
void
|
|
print_usage();
|
|
|
|
/* Print help message (-h) */
|
|
void
|
|
print_help();
|
|
|
|
/* Function used to display progress when uploading a file */
|
|
|
|
void
|
|
progress(
|
|
void *clientp, double dltotal, double dlnow, double ultotal, double ulnow);
|
|
|
|
/* Print config */
|
|
void
|
|
print_config();
|
|
|
|
int
|
|
init_sakisafe_options();
|
|
|
|
int
|
|
get_protocol(char *server);
|
|
|
|
int
|
|
die(char *msg);
|
|
|
|
int
|
|
upload_file_http(int argc, char **argv);
|
|
|
|
int
|
|
upload_file_scp(int argc, char **argv);
|