summaryrefslogtreecommitdiff
path: root/channels/iax2-provision.c
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2007-12-16 10:51:53 +0000
committerOlle Johansson <oej@edvina.net>2007-12-16 10:51:53 +0000
commit17afebc1a66f6cb114abfbd0a0490f7e45b3bdc6 (patch)
tree1737bbf754fc80795d7da8a7e44ef757640a050f /channels/iax2-provision.c
parent4d0ceb96ba5d97407f0ca819b0053055c4cc9d5d (diff)
HUGE improvements to QoS/CoS handling by IgorG
- Refer to the proper documentation - Implement separate signalling/media QoS/CoS in many channels using RTP - Improve warnings and verbose messages - Deprecate some old settings Minor modifications by me, a big effort from IgorG. Thanks! Reported by: IgorG Patches: qoscleanup-89394-4-trunk.patch uploaded by IgorG (license 20) Tested by: IgorG (closes issue #11145) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93163 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/iax2-provision.c')
-rw-r--r--channels/iax2-provision.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/iax2-provision.c b/channels/iax2-provision.c
index 3ddec3e06..5b52a0934 100644
--- a/channels/iax2-provision.c
+++ b/channels/iax2-provision.c
@@ -323,7 +323,7 @@ static int iax_template_parse(struct iax_template *cur, struct ast_config *cfg,
ast_log(LOG_WARNING, "Ignoring invalid codec '%s' for '%s' at line %d\n", v->value, s, v->lineno);
} else if (!strcasecmp(v->name, "tos")) {
if (ast_str2tos(v->value, &cur->tos))
- ast_log(LOG_WARNING, "Invalid tos value at line %d, see doc/qos.tex for more information.\n", v->lineno);
+ ast_log(LOG_WARNING, "Invalid tos value at line %d, refer to QoS documentation\n", v->lineno);
} else if (!strcasecmp(v->name, "user")) {
strncpy(cur->user, v->value, sizeof(cur->user) - 1);
if (strcmp(cur->user, v->value))