Skip to content
Snippets Groups Projects
Commit dae935b4 authored by deuce's avatar deuce
Browse files

We use 64-bit file sizes... though it looks like the FTP server will have

issues with files over 4GB.
parent 6bebc963
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,8 @@ typedef struct {
WORD pasv_port_low;
WORD pasv_port_high;
DWORD options; /* See FTP_OPT definitions */
uint32_t min_fsize; /* Minimum file size accepted for upload */
uint32_t max_fsize; /* Maximum file size accepted for upload (0=unlimited) */
uint64_t min_fsize; /* Minimum file size accepted for upload */
uint64_t max_fsize; /* Maximum file size accepted for upload (0=unlimited) */
void* cbdata; /* Private data passed to callbacks */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment