openGauss-server/src/bin/pg_probackup/remote.h

26 lines
479 B
C

/*-------------------------------------------------------------------------
*
* remote.h: - prototypes of remote functions.
*
* Copyright (c) 2017-2019, Postgres Professional
*
*-------------------------------------------------------------------------
*/
#ifndef REMOTE_H
#define REMOTE_H
typedef struct RemoteConfig
{
const char* proto;
char* host;
char* port;
char* path;
char* libpath;
char* user;
char *ssh_config;
char *ssh_options;
} RemoteConfig;
#endif