You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-09 00:45:49 +02:00
23 lines
1.2 KiB
C
23 lines
1.2 KiB
C
![]() |
/***********************************************************************************************************************************
|
||
|
Backup Protocol Handler
|
||
|
***********************************************************************************************************************************/
|
||
|
#ifndef COMMAND_BACKUP_PROTOCOL_H
|
||
|
#define COMMAND_BACKUP_PROTOCOL_H
|
||
|
|
||
|
#include "common/type/string.h"
|
||
|
#include "common/type/variantList.h"
|
||
|
#include "protocol/server.h"
|
||
|
|
||
|
/***********************************************************************************************************************************
|
||
|
Constants
|
||
|
***********************************************************************************************************************************/
|
||
|
#define PROTOCOL_COMMAND_BACKUP_FILE "backupFile"
|
||
|
STRING_DECLARE(PROTOCOL_COMMAND_BACKUP_FILE_STR);
|
||
|
|
||
|
/***********************************************************************************************************************************
|
||
|
Functions
|
||
|
***********************************************************************************************************************************/
|
||
|
bool backupProtocol(const String *command, const VariantList *paramList, ProtocolServer *server);
|
||
|
|
||
|
#endif
|