summaryrefslogtreecommitdiffstats
path: root/src/dbi.h
diff options
context:
space:
mode:
authorRoberto Hueso Gómez <rhueso@soleta.eu>2020-07-10 13:13:59 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-07-10 16:21:58 +0200
commit0631b0e8e6fdf77d0bbe6715e0cb2c4bdb872b12 (patch)
treec08667b1f938675a6cbb61ed55b498df58d8716d /src/dbi.h
parenta8eccba7066047997543970b83cb8f371923833f (diff)
#988 Add DB port option to ogserver.json config file
This patch provides functionality to select a database port. It also adds a default IP for the database.
Diffstat (limited to 'src/dbi.h')
-rw-r--r--src/dbi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dbi.h b/src/dbi.h
index 30327a7..4f1d81c 100644
--- a/src/dbi.h
+++ b/src/dbi.h
@@ -7,6 +7,7 @@ struct og_dbi_config {
const char *user;
const char *passwd;
const char *host;
+ const char *port;
const char *database;
};