aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa.c')
-rw-r--r--src/ipa.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ipa.c b/src/ipa.c
index 197a47f..5f62e88 100644
--- a/src/ipa.c
+++ b/src/ipa.c
@@ -97,6 +97,11 @@ struct msgb *osmo_ipa_msg_alloc(int headroom)
return msg;
}
+struct msgb *osmo_ipa_ext_msg_alloc(size_t headroom)
+{
+ return osmo_ipa_msg_alloc(sizeof(struct ipa_head_ext) + headroom);
+}
+
void osmo_ipa_msg_push_header(struct msgb *msg, uint8_t proto)
{
struct ipa_head *hh;