Github user andrzejdoro commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/205#discussion_r239014858
--- Diff: src/guacd/conf-file.h ---
@@ -24,6 +24,11 @@
#include "conf.h"
+/**
+ * Creates a new configuration structure, filled with default settings.
+ */
+guacd_config* guacd_conf_create();
+
--- End diff --
After changes, guacd_config creation is independent of parsing
configuration files.
Should I put this function here or in `conf.h` (and implementation in
**new** `conf.c` file)?
---