enlarge the GSUP message headroom

Make room for (more) arbitrary IPA headers, like longer IPA names as configured
by the user.

Change-Id: I7d86f2dadcae29fe1550ea2c9773394ab31a837b
This commit is contained in:
Neels Hofmeyr 2019-11-25 04:00:10 +01:00
parent 04c2375b38
commit d017d7b215
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}