aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2019-11-25 04:00:10 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2019-12-16 16:21:53 +0100
commitfac52fbd6b31591a64d57d4521344c4acdc4d023 (patch)
tree444a82348dff01b628524d987e908ff79f852552
parentf0c02ad9c74cb7a548d23988a97d5760e77c6f1c (diff)
enlarge the GSUP message headroom
Make room for (more) arbitrary IPA headers, like longer IPA names as configured by the user. Change-Id: I7d86f2dadcae29fe1550ea2c9773394ab31a837b
-rw-r--r--src/gsup_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsup_server.c b/src/gsup_server.c
index 053151f..4819ea4 100644
--- a/src/gsup_server.c
+++ b/src/gsup_server.c
@@ -37,7 +37,7 @@
struct msgb *osmo_gsup_msgb_alloc(const char *label)
{
- struct msgb *msg = msgb_alloc_headroom(1024+16, 16, label);
+ struct msgb *msg = msgb_alloc_headroom(1024+512, 512, label);
OSMO_ASSERT(msg);
return msg;
}