[reSIProcate-users] a question about warning header
The Helper class has the follow code:
if (!warning.empty())
{
WarningCategory warn;
warn.code() = 499;
warn.hostname() = hostname;
warn.text() = warning;
response.header(h_Warnings).push_back(warn);
}
I have read rfc3261 20.43,can't find the 499 .so i help to the
internet,but i also get nothing.
finally,I get a idea that if the stack is wrong.
i think the warn.code should be 399.
and the same code appear in the transactionstate class.
wait your help!!