From 9dc64e1e291d6518da0a918105c5bf7b1c603dd5 Mon Sep 17 00:00:00 2001 From: Manuel Bachmann Date: Mon, 13 Jun 2016 13:15:17 +0200 Subject: Add basic configuration logic, builtin configuration There is now a default routing configuration provided at startup (config file parsing is stubbed, decide if we need it for routing purposes, or just for very basic things). Change-Id: Ib824b63c663355ed80d0e6823d5f9aec8cb093d5 Signed-off-by: Manuel Bachmann --- module.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'module.c') diff --git a/module.c b/module.c index beb2c73..d047b26 100644 --- a/module.c +++ b/module.c @@ -34,6 +34,7 @@ $ pactl load-module mypamodule #include /* for "pa_modargs" */ #include "userdata.h" /* for "struct userdata" */ +#include "config.h" /* for "pa_config_...()" */ #include "utils.h" /* for "struct pa_null_sink", "pa_utils_create_null_sink()"... */ #include "loopback.h" /* for "struct pa_loopback/loopnode" */ #include "zone.h" /* for "struct pa_zoneset" */ @@ -80,6 +81,8 @@ int pa__init (pa_module *m) const char *amsocktype; /* Optional external routing daemon: socket type ("unix"/"tcp") */ const char *amaddr; /* Optional external routing daemon: socket address (path/ip address) */ const char *amport; /* Optional external routing daemon: socket port ("tcp" type only) */ + const char *cfgpath; + char buf[4096]; pa_assert (m); @@ -115,6 +118,11 @@ int pa__init (pa_module *m) m->userdata = u; + /* apply the config file */ + + cfgpath = pa_config_file_get_path (cfgdir, cfgfile, buf, sizeof(buf)); + pa_config_parse_file (u, cfgpath); + /* really initialize the module's core logic */ pa_tracker_synchronize (u); -- cgit 1.2.3-korg