forked from meetecho/janus-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apierror.c
60 lines (59 loc) · 1.98 KB
/
apierror.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "apierror.h"
const char *janus_get_api_error(int error) {
switch(error) {
case JANUS_OK:
return "Success";
case JANUS_ERROR_UNAUTHORIZED:
return "Unauthorized request (wrong or missing secret/token)";
case JANUS_ERROR_UNAUTHORIZED_PLUGIN:
return "Unauthorized access to plugin (token is not allowed to)";
case JANUS_ERROR_UNKNOWN:
return "Unknown error";
case JANUS_ERROR_TRANSPORT_SPECIFIC:
return "Transport specific error";
case JANUS_ERROR_MISSING_REQUEST:
return "Missing request";
case JANUS_ERROR_UNKNOWN_REQUEST:
return "Unknown request";
case JANUS_ERROR_INVALID_JSON:
return "Invalid JSON";
case JANUS_ERROR_INVALID_JSON_OBJECT:
return "Invalid JSON Object";
case JANUS_ERROR_MISSING_MANDATORY_ELEMENT:
return "Missing mandatory element";
case JANUS_ERROR_INVALID_REQUEST_PATH:
return "Invalid path for this request";
case JANUS_ERROR_SESSION_NOT_FOUND:
return "Session not found";
case JANUS_ERROR_HANDLE_NOT_FOUND:
return "Handle not found";
case JANUS_ERROR_PLUGIN_NOT_FOUND:
return "Plugin not found";
case JANUS_ERROR_PLUGIN_ATTACH:
return "Error attaching plugin";
case JANUS_ERROR_PLUGIN_MESSAGE:
return "Error sending message to plugin";
case JANUS_ERROR_PLUGIN_DETACH:
return "Error detaching from plugin";
case JANUS_ERROR_JSEP_UNKNOWN_TYPE:
return "Unsupported JSEP type";
case JANUS_ERROR_JSEP_INVALID_SDP:
return "Invalid SDP";
case JANUS_ERROR_TRICKE_INVALID_STREAM:
return "Invalid stream";
case JANUS_ERROR_INVALID_ELEMENT_TYPE:
return "Invalid element type";
case JANUS_ERROR_SESSION_CONFLICT:
return "Session ID already in use";
case JANUS_ERROR_UNEXPECTED_ANSWER:
return "Unexpected ANSWER (no OFFER)";
case JANUS_ERROR_TOKEN_NOT_FOUND:
return "Token not found";
case JANUS_ERROR_WEBRTC_STATE:
return "Wrong WebRTC state";
case JANUS_ERROR_NOT_ACCEPTING_SESSIONS:
return "Currently not accepting new sessions";
default:
return "Unknown error";
}
}