diff options
author | Alfred E. Heggestad <aeh@db.org> | 2015-09-19 22:04:58 +0200 |
---|---|---|
committer | Alfred E. Heggestad <aeh@db.org> | 2015-09-19 22:04:58 +0200 |
commit | 53c4b2284753aae81d3174174411428696790892 (patch) | |
tree | 60844e45efaebc44f3cfa21f634ab900dfbdbb17 /src | |
parent | 0e1e1a7a392adb3ac31c1620f479228fd638efba (diff) |
ua: change 486 reason to 'max calls'
Diffstat (limited to 'src')
-rw-r--r-- | src/ua.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1105,7 +1105,7 @@ static void sipsess_conn_handler(const struct sip_msg *msg, void *arg) if (list_count(&ua->calls) + 1 > MAX_CALLS) { info("ua: rejected call from %r (maximum %d calls)\n", &msg->from.auri, MAX_CALLS); - (void)sip_treply(NULL, uag.sip, msg, 486, "Busy Here"); + (void)sip_treply(NULL, uag.sip, msg, 486, "Max Calls"); return; } |