jchavanton commented on this pull request.


> +{
+       if(rank == PROC_MAIN) {
+               int pid;
+               pid = fork_process(PROC_XWORKER, "RTP_media_server", 1);
+               if(pid < 0)
+                       return -1;
+               if(pid == 0) {
+                       rms_session_manage_loop();
+                       return 0;
+               }
+       }
+       int rtn = 0;
+       return (rtn);
+}
+
+int rms_str_dup(str *dst, str *src, int shared)

Same topic as before, since they do not convert to `\0` terminated `char *` 
they are not flexible in this case.

-- 
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/1701#discussion_r230569857
_______________________________________________
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev

Reply via email to