38 const char *description;
44 {
"Resource requested found but not modified"},
46 {
"Resource requested not found"},
47 {
"Resource temporarily unavailable (call again)"},
49 {
"Not enough space/memory"},
50 {
"Invalid argument passed. Please review ranges."},
51 {
"Conflict with the current state of the target " 53 {
"Bad or not supported audio/video format"},
54 {
"Bad or not supported multiplex format"},
55 {
"Operation timed out"},
56 {
"Operation interrupted"},
57 {
"Bad protocol option"},
58 {
"Address family not supported"},
59 {
"Address family not supported: need to specify host IP" 61 {
"Address family not supported: need to specify port" 63 {
"Valid request, no data record of requested type"},
66 const char* stat_codes_get_description(stat_codes_ctx_t code)
68 if(code< 0 || code> (STAT_CODES_MAX- 1))
69 return stat_codes_lutable[STAT_ERROR].description;
70 return stat_codes_lutable[code].description;
General status codes enumeration.