aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2016-01-16 06:41:31 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2016-01-16 06:41:31 +0100
commitaf3cb3aabad6b236dda5f421c9b694864a02883e (patch)
treef01120042f368b7bba423e439bf47cdfc32b55e7
parent0f62ef26f564ac3af8f6bf47b646fdc0f12119e9 (diff)
downloadjson-rpc-shell-af3cb3aabad6b236dda5f421c9b694864a02883e.tar.gz
json-rpc-shell-af3cb3aabad6b236dda5f421c9b694864a02883e.tar.xz
json-rpc-shell-af3cb3aabad6b236dda5f421c9b694864a02883e.zip
Bump liberty
-rw-r--r--demo-json-rpc-server.c12
m---------liberty0
2 files changed, 6 insertions, 6 deletions
diff --git a/demo-json-rpc-server.c b/demo-json-rpc-server.c
index a65693d..ab86c59 100644
--- a/demo-json-rpc-server.c
+++ b/demo-json-rpc-server.c
@@ -1136,7 +1136,7 @@ ws_handler_push (struct ws_handler *self, const void *data, size_t len)
// --- Server ------------------------------------------------------------------
-static struct config_item g_config_table[] =
+static struct simple_config_item g_config_table[] =
{
{ "bind_host", NULL, "Address of the server" },
{ "port_fastcgi", "9000", "Port to bind for FastCGI" },
@@ -1176,7 +1176,7 @@ server_context_init (struct server_context *self)
memset (self, 0, sizeof *self);
str_map_init (&self->config);
- load_config_defaults (&self->config, g_config_table);
+ simple_config_load_defaults (&self->config, g_config_table);
ev_timer_init (&self->quit_timeout_watcher, on_quit_timeout, 0., 0.);
self->quit_timeout_watcher.data = self;
}
@@ -1583,7 +1583,7 @@ canonicalize_url_path (const char *path)
// XXX: this strips any slashes at the end
struct str_vector v;
str_vector_init (&v);
- split_str_ignore_empty (path, '/', &v);
+ cstr_split_ignore_empty (path, '/', &v);
struct str_vector canonical;
str_vector_init (&canonical);
@@ -2383,7 +2383,7 @@ get_ports_from_config (struct server_context *ctx,
{
const char *ports;
if ((ports = str_map_find (&ctx->config, key)))
- split_str_ignore_empty (ports, ',', out);
+ cstr_split_ignore_empty (ports, ',', out);
}
static bool
@@ -2588,7 +2588,7 @@ parse_program_arguments (int argc, char **argv)
printf (PROGRAM_NAME " " PROGRAM_VERSION "\n");
exit (EXIT_SUCCESS);
case 'w':
- call_write_default_config (optarg, g_config_table);
+ call_simple_config_write_default (optarg, g_config_table);
exit (EXIT_SUCCESS);
default:
print_error ("wrong options");
@@ -2618,7 +2618,7 @@ main (int argc, char *argv[])
server_context_init (&ctx);
struct error *e = NULL;
- if (!read_config_file (&ctx.config, &e))
+ if (!simple_config_update_from_file (&ctx.config, &e))
{
print_error ("error loading configuration: %s", e->message);
error_free (e);
diff --git a/liberty b/liberty
-Subproject 8c6d18757d2d4135963f3dbab6d2d5ec8c8b6af
+Subproject 8a9a28231bba6334c383dca59f7eccd1e507569