aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-11 15:32:09 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-16 12:10:32 +0100
commitb35c5c3227a30187de4df3e214eace142e1be100 (patch)
tree4fae57f24b42a06052e1057a6709fc07a0fb78b0 /include
parentd04011abc17f298714213b970cbdf034a1ac2d0d (diff)
stp: Allow to specify a trunk_name in the application
This trunk name will be used to send RSIP for the trunk on ISUP resets. Right now each app can be associated only one trunk.
Diffstat (limited to 'include')
-rw-r--r--include/ss7_application.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ss7_application.h b/include/ss7_application.h
index 4462337..3d25165 100644
--- a/include/ss7_application.h
+++ b/include/ss7_application.h
@@ -78,8 +78,9 @@ struct ss7_application {
int forward_only;
int reset_count;
- /* mgcp handling for the cellmgr */
+ /* mgcp handling for the cellmgr and stp */
char *mgcp_domain_name;
+ char *trunk_name;
};
@@ -96,5 +97,7 @@ void ss7_application_pass_isup(struct ss7_application *, int pass);
int ss7_application_mgcp_domain_name(struct ss7_application *,
const char *domain_name);
+int ss7_application_trunk_name(struct ss7_application *,
+ const char *trunk_name);
#endif