TDengine/include/common/rsync.h
2024-05-08 13:52:20 +08:00

24 lines
412 B
C

//
// Created by mingming wanng on 2023/11/2.
//
#ifndef TDENGINE_RSYNC_H
#define TDENGINE_RSYNC_H
#ifdef __cplusplus
extern "C" {
#endif
#include "tarray.h"
void stopRsync();
void startRsync();
int32_t uploadRsync(const char* id, const char* path);
int32_t downloadRsync(const char* id, const char* path);
int32_t deleteRsync(const char* id);
#ifdef __cplusplus
}
#endif
#endif // TDENGINE_RSYNC_H