if (!o->chan->callerid)
ast_log(LOG_WARNING, "Out of memory\n");
} else {
- if (in->callerid)
+ if (in->callerid) {
o->chan->callerid = strdup(in->callerid);
- if (!o->chan->callerid)
- ast_log(LOG_WARNING, "Out of memory\n");
+ if (!o->chan->callerid)
+ ast_log(LOG_WARNING, "Out of memory\n");
+ }
strncpy(o->chan->accountcode, in->accountcode, sizeof(o->chan->accountcode) - 1);
o->chan->cdrflags = in->cdrflags;
}
update_user_counter(p, DEC_IN_USE);
}
break;
+ case 482: /* SIP is incapable of performing a hairpin call, which
+ is yet another failure of not having a layer 2 (again, YAY
+ IETF for thinking ahead). So we treat this as a call
+ forward and hope we end up at the right place... */
+ ast_log(LOG_DEBUG, "Hairpin detected, setting up call forward for what it's worth\n");
+ if (p->owner)
+ snprintf(p->owner->call_forward, sizeof(p->owner->call_forward), "Local/%s@%s", p->username, p->context);
+ /* Fall through */
case 486: /* Busy here */
case 600: /* Busy everywhere */
case 603: /* Decline */