Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9311590

Browse files
committed
More remote options to config
1 parent eea74a8 commit 9311590

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/utils/remote.h

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* remote.h: - prototypes of remote functions.
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
9+
10+
#ifndef REMOTE_H
11+
#define REMOTE_H
12+
13+
typedef struct RemoteConfig
14+
{
15+
char* proto;
16+
char* host;
17+
char* port;
18+
char* path;
19+
char *ssh_config;
20+
char *ssh_options;
21+
bool enabled;
22+
} RemoteConfig;
23+
24+
#endif

0 commit comments

Comments
 (0)