forked from huawei/openGauss-server
26 lines
479 B
C
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
|