ipa: place comment "IPA Multiplex" on ipa allocated msgbs

libosmocore offers the ipa API as general IPA Multiplex, which is e.g. used for
GSUP in osmo-msc. Looking at talloc reports, it is confusing to see "Abis/IP"
as msgb comment, because osmo-msc does not have an Abis interface.

Rename to "IPA Multiplex" as a more general description.

Change-Id: I3714dd21707bec0c4bcd0871e6ee8ff32d56b125
This commit is contained in:
Neels Hofmeyr 2017-09-07 20:41:12 +02:00
parent 03516d6dd2
commit 889ab16437
1 changed files with 1 additions and 1 deletions

View File

@ -582,7 +582,7 @@ struct msgb *ipa_msg_alloc(int headroom)
headroom += sizeof(struct ipaccess_head);
nmsg = msgb_alloc_headroom(1200 + headroom, headroom, "Abis/IP");
nmsg = msgb_alloc_headroom(1200 + headroom, headroom, "IPA Multiplex");
if (!nmsg)
return NULL;
return nmsg;