diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2017-09-07 20:41:12 +0200 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2017-09-07 20:41:12 +0200 |
commit | 889ab16437297a2ce1885efde5e2efc4816851ff (patch) | |
tree | 20e28e4e3c8fc514c771ab7671ae45aa64c94059 /src | |
parent | 03516d6dd2fe94e94879db285d0b3492f0734831 (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/gsm/ipa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsm/ipa.c b/src/gsm/ipa.c index bc848504..fef73c3d 100644 --- a/src/gsm/ipa.c +++ b/src/gsm/ipa.c @@ -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; |