aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-05-13 21:08:36 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-05-13 21:17:37 +0200
commit0ff1c8c548f75988e2b910e4442fd82e73ab31df (patch)
tree881ad3e89adf8044b24ac029e6a9ce16d87e44aa /include
parentfe1550fed4146fd016f0d2cffc07f6ae8ed6b7fe (diff)
patching: Add a VTY option to hardcode the assignment complete message
For some equipment it is the easiest to patch the assignment complete message transported to the MSC. Add a VTY config to enable this patching, create a testcase that tests that the original message is truncated. The setting of the VTY option has been manually tested. The entire system has not been end to end tested. Conflicts: src/vty_interface.c
Diffstat (limited to 'include')
-rw-r--r--include/ss7_application.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/ss7_application.h b/include/ss7_application.h
index 3d25165..b762cac 100644
--- a/include/ss7_application.h
+++ b/include/ss7_application.h
@@ -81,6 +81,13 @@ struct ss7_application {
/* mgcp handling for the cellmgr and stp */
char *mgcp_domain_name;
char *trunk_name;
+
+ /* various hacks/quirks to deal with broken equipment */
+ /*
+ * Some equipments do not look into the codec list but only the
+ * size of it.
+ */
+ unsigned fixed_ass_cmpl_reply : 1;
};