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.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/2031#discussion_r314028690