Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eea74a8 commit 9311590Copy full SHA for 9311590
1 file changed
src/utils/remote.h
@@ -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