@jchavanton commented on this pull request.
In src/modules/rtp_media_server/rtp_media_server.c:
> +{ + 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, view it on GitHub, or mute the thread.