From 0667eb1797ee826c14e77f9c3d0f3c847368d183 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 23 Jul 2017 17:25:38 +0200 Subject: [PATCH] BSSGP: Fix order of IEs in BVC-RESET PDU --- gprs_gb/BSSGP_Types.ttcn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gprs_gb/BSSGP_Types.ttcn b/gprs_gb/BSSGP_Types.ttcn index 91c7d0634..5e4a0bc9d 100644 --- a/gprs_gb/BSSGP_Types.ttcn +++ b/gprs_gb/BSSGP_Types.ttcn @@ -354,7 +354,7 @@ module BSSGP_Types { template BssgpTLV t_BSSGP_IE_CellId(template BssgpCellId cid) := t_BssgpIE(CELL_ID, { cell_id := cid }); template BssgpPdu t_BVC_RESET(template BssgpCause cause, template BssgpBvci bvci, template BssgpCellId cell_id) := - t_BSSGP_other(BVC_RESET, { t_BSSGP_IE_Cause(cause), t_BSSGP_IE_Bvci(bvci), t_BSSGP_IE_CellId(cell_id) }); + t_BSSGP_other(BVC_RESET, { t_BSSGP_IE_Bvci(bvci), t_BSSGP_IE_Cause(cause), t_BSSGP_IE_CellId(cell_id) }); template BssgpPdu t_BVC_RESET_ACK(template BssgpBvci bvci, template BssgpCellId cell_id) := t_BSSGP_other(BVC_RESET_ACK, { t_BSSGP_IE_Bvci(bvci), t_BSSGP_IE_CellId(cell_id) });