16 lines
311 B
C
16 lines
311 B
C
#ifndef CLIENT_SEND_H
|
|
#define CLIENT_SEND_H
|
|
|
|
#include "chunk.h"
|
|
#include "config.h"
|
|
#include "transport_tcp.h"
|
|
|
|
extern char *server_host;
|
|
extern int server_port;
|
|
|
|
int send_chunk(Client *client, Chunk *chunk, Config *config);
|
|
int send_files(Config *config);
|
|
int send_files_multithreaded(Config *config);
|
|
|
|
#endif
|