mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-sip-connector.git
synced 2025-10-23 08:22:20 +00:00
mncc: mncc_create_remote_leg: use mncc_write instead of write direct to the fd
Change-Id: I870c16d7ee5e5424304f3c1c9fb78af418ae2577
This commit is contained in:
@@ -922,11 +922,10 @@ int mncc_create_remote_leg(struct mncc_connection *conn, struct call *call)
|
||||
* - Screening, redirect?
|
||||
* - Synth. the bearer caps based on codecs?
|
||||
*/
|
||||
rc = write(conn->fd.fd, &mncc, sizeof(mncc));
|
||||
rc = mncc_write(conn, &mncc);
|
||||
if (rc != sizeof(mncc)) {
|
||||
LOGP(DMNCC, LOGL_ERROR, "Failed to send message leg(%u)\n",
|
||||
leg->callref);
|
||||
close_connection(conn);
|
||||
talloc_free(leg);
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user