From 6ef8ef7150ec4ff093df10692cc8e2b26f0ecae0 Mon Sep 17 00:00:00 2001 From: Jacob Erlbeck Date: Tue, 23 Sep 2014 13:28:24 +0200 Subject: gprs: Set bssgph field in bssgp_msgb_alloc() Currently the bssgph field is not set when using the bssgp_tx_* functions. This hinders unit testing of generated messages. This patch initializes the bssgph field directly after allocation a new bssgp msgb in bssgp_msgb_alloc() so that it is set by default. Sponsored-by: On-Waves ehf --- src/gb/gprs_bssgp_util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gb/gprs_bssgp_util.c b/src/gb/gprs_bssgp_util.c index 261e0b0f..604764c1 100644 --- a/src/gb/gprs_bssgp_util.c +++ b/src/gb/gprs_bssgp_util.c @@ -70,7 +70,9 @@ const char *bssgp_cause_str(enum gprs_bssgp_cause cause) struct msgb *bssgp_msgb_alloc(void) { - return msgb_alloc_headroom(4096, 128, "BSSGP"); + struct msgb *msg = msgb_alloc_headroom(4096, 128, "BSSGP"); + msgb_bssgph(msg) = msg->data; + return msg; } /* Transmit a simple response such as BLOCK/UNBLOCK/RESET ACK/NACK */ -- cgit v1.2.3