SUA COIT: send dest ref nr, not dest addr

See RFC 3868 3.3.11
https://tools.ietf.org/html/rfc3868#section-3.3.11

Change-Id: I083384876d4a8d7fa9c03409fbdc9e00e3c8f416
This commit is contained in:
Neels Hofmeyr 2016-03-07 14:15:17 +01:00 committed by Harald Welte
parent b5f0d1c9bc
commit db3a4bb5a5
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ static void tx_inact_tmr_cb(void *data)
xua_msg_add_u32(xua, SUA_IEI_ROUTE_CTX, 0); /* FIXME */
xua_msg_add_u32(xua, SUA_IEI_PROTO_CLASS, 2);
xua_msg_add_u32(xua, SUA_IEI_SRC_REF, conn->conn_id);
xua_msg_add_sccp_addr(xua, SUA_IEI_DEST_ADDR, &conn->called_addr);
xua_msg_add_u32(xua, SUA_IEI_DEST_REF, conn->remote_ref);
/* optional: sequence number; credit (both class 3 only) */
outmsg = xua_to_msg(1, xua);