Add SM_CODE_NO_TRANSPORT error code
This commit is contained in:
parent
03ac1348ba
commit
4216003f26
2 changed files with 3 additions and 0 deletions
|
@ -325,6 +325,8 @@ streaming_code2txt(int code)
|
|||
return "Too bad signal quality";
|
||||
case SM_CODE_NO_SOURCE:
|
||||
return "No source available";
|
||||
case SM_CODE_NO_TRANSPORT:
|
||||
return "No transport assigned to channel";
|
||||
|
||||
case SM_CODE_ABORTED:
|
||||
return "Aborted by user";
|
||||
|
|
|
@ -258,6 +258,7 @@ typedef enum {
|
|||
#define SM_CODE_SVC_NOT_ENABLED 204
|
||||
#define SM_CODE_BAD_SIGNAL 205
|
||||
#define SM_CODE_NO_SOURCE 206
|
||||
#define SM_CODE_NO_TRANSPORT 207
|
||||
|
||||
#define SM_CODE_ABORTED 300
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue