mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
22 lines
1.2 KiB
C++
22 lines
1.2 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include "serverinterface/backups.h"
|
|
#include <vector>
|
|
#include "server_log.h"
|
|
|
|
|
|
namespace
|
|
{
|
|
const int64 restore_flag_ignore_permissions = 1 << 6;
|
|
}
|
|
|
|
bool create_clientdl_thread(const std::string& curr_clientname, int curr_clientid, int restore_clientid, std::string foldername, std::string hashfoldername,
|
|
const std::string& filter, bool skip_hashes,
|
|
const std::string& folder_log_name, int64& restore_id, size_t& status_id, logid_t& log_id, const std::string& restore_token, const std::vector<std::pair<std::string, std::string> >& map_paths,
|
|
bool clean_other, bool ignore_other_fs, const std::string& share_path, bool follow_symlinks, int64 restore_flags, THREADPOOL_TICKET& ticket,
|
|
const std::vector<std::string>& tokens, const backupaccess::STokens& access_tokens, bool encrypt_identity);
|
|
|
|
bool create_clientdl_thread(int backupid, const std::string& curr_clientname, int curr_clientid, int64& restore_id, size_t& status_id, logid_t& log_id,
|
|
const std::string& restore_token, const std::vector<std::pair<std::string, std::string> >& map_paths, bool clean_other, bool ignore_other_fs, bool follow_symlinks, int64 restore_flags,
|
|
const std::vector<std::string>& tokens, bool encrypt_identity);
|