d102622e28
CI / lint (pull_request) Failing after 31s
CI / build-and-test (pull_request) Has been skipped
CI / sanitizers (address) (pull_request) Has been skipped
CI / sanitizers (undefined) (pull_request) Has been skipped
CI / fuzz-build (pull_request) Has been skipped
CI / coverage (pull_request) Has been skipped
CI / valgrind (pull_request) Has been skipped
14 lines
327 B
C
14 lines
327 B
C
#ifndef CLIENT_SEND_H
|
|
#define CLIENT_SEND_H
|
|
|
|
#include "chunk.h"
|
|
#include "config.h"
|
|
#include "transport_tcp.h"
|
|
|
|
int send_chunk(Client* client, Chunk* chunk, Config* config);
|
|
int send_files(Config* config);
|
|
/* Takes ownership only when *config is set to NULL on return. */
|
|
int send_files_multithreaded(Config** config);
|
|
|
|
#endif
|