aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am3
-rw-r--r--include/mgcp_patch.h9
2 files changed, 11 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index a4cdfb3..acaf137 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -1,6 +1,7 @@
noinst_HEADERS = mtp_level3.h mtp_data.h ipaccess.h thread.h mtp_pcap.h \
mgcp_ss7.h bss_patch.h bssap_sccp.h bsc_data.h udp_input.h \
snmp_mtp.h cellmgr_debug.h bsc_sccp.h bsc_ussd.h sctp_m2ua.h \
- isup_types.h counter.h msc_connection.h ss7_application.h
+ isup_types.h counter.h msc_connection.h ss7_application.h \
+ mgcp_patch.h
SUBDIRS = mgcp
diff --git a/include/mgcp_patch.h b/include/mgcp_patch.h
new file mode 100644
index 0000000..5b1e5dc
--- /dev/null
+++ b/include/mgcp_patch.h
@@ -0,0 +1,9 @@
+#ifndef MGCP_PATCH_H
+#define MGCP_PATCH_H
+
+#include <osmocom/core/msgb.h>
+
+struct ss7_application;
+struct msgb *mgcp_patch(struct ss7_application *app, struct msgb *msg);
+
+#endif