RTPproxy: update list of errors

RTPproxy: update list of errors according to commit
sippy/rtpproxy@b9d7b4ced2.

Change-Id: I885edb02a7e74240627d68ece5c1d12d45081048
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
This commit is contained in:
Peter Lemenkov 2021-03-29 21:38:55 +02:00 committed by Wireshark GitLab Utility
parent e4d4814168
commit c0249887af
1 changed files with 17 additions and 9 deletions

View File

@ -202,8 +202,9 @@ static const value_string oktypenames[] = {
static const string_string errortypenames[] = {
{ "E0", "Syntax error: unknown command (CMDUNKN)" },
{ "E1", "Syntax error: wrong number of arguments (PARSE_NARGS)" },
{ "E2", "Syntax error: unknown modifiers (PARSE_MODS)" },
{ "E1", "Syntax error: invalid number of arguments (PARSE_NARGS)" },
{ "E2", "Syntax error: modifiers are not supported by the command (PARSE_MODS)" },
{ "E3", "Syntax error: subcommand is not supported (PARSE_SUBC)" },
{ "E5", "PARSE_1" },
{ "E6", "PARSE_2" },
{ "E7", "PARSE_3" },
@ -218,18 +219,23 @@ static const string_string errortypenames[] = {
{ "E16", "PARSE_16" },
{ "E17", "PARSE_6" },
{ "E18", "PARSE_7" },
{ "E25", "Software error: return string too big (RTOOBIG_1)" },
{ "E31", "INVLARG_1" },
{ "E32", "INVLARG_2" },
{ "E33", "INVLARG_3" },
{ "E34", "INVLARG_4" },
{ "E35", "INVLARG_5" },
{ "E50", "SESUNKN" },
{ "E18", "PARSE_8" },
{ "E25", "Software error: output buffer overflow (RTOOBIG_1)" },
{ "E26", "Software error: output buffer overflow (RTOOBIG_2)" },
{ "E31", "Syntax error: invalid local address (INVLARG_1)" },
{ "E32", "Syntax error: invalid remote address (INVLARG_2)" },
{ "E33", "Syntax error: can't find local address for remote address (INVLARG_3)" },
{ "E34", "Syntax error: invalid local address (INVLARG_4)" },
{ "E35", "Syntax error: no codecs (INVLARG_5)" },
{ "E36", "Syntax error: cannot match local address for the session (INVLARG_6)" },
{ "E50", "Software error: session not found (SESUNKN)" },
{ "E60", "PLRFAIL" },
{ "E62", "Software error: unsupported/invalid counter name (QRYFAIL)" },
{ "E65", "CPYFAIL" },
{ "E68", "STSFAIL" },
{ "E71", "Software error: can't create listener (LSTFAIL_1)" },
{ "E72", "Software error: can't create listener (LSTFAIL_2)" },
{ "E75", "Software error: must permit notification socket with -n (NSOFF)" },
{ "E81", "Out of memory (NOMEM_1)" },
{ "E82", "Out of memory (NOMEM_2)" },
{ "E83", "Out of memory (NOMEM_3)" },
@ -238,6 +244,8 @@ static const string_string errortypenames[] = {
{ "E86", "Out of memory (NOMEM_6)" },
{ "E87", "Out of memory (NOMEM_7)" },
{ "E88", "Out of memory (NOMEM_8)" },
{ "E89", "Out of memory (NOMEM_9)" },
{ "E98", "OVERLOAD" },
{ "E99", "Software error: proxy is in the deorbiting-burn mode, new session rejected (SLOWSHTDN)" },
{ 0, NULL }
};