wkampich commented on this pull request.
+static int mod_init(void)
+{ + LM_DBG("init lost module\n"); + + if(httpc_load_api(&httpapi) != 0) { + LM_ERR("Can not bind to http_client API \n"); + return -1; + } + + LM_DBG("**** init lost module done.\n"); + + return 0; +} + +/* Child initialization function */ +static int child_init(int rank)
Just pushed an updated version with all your feedback incorporated.