Add SM_CODE_NO_TRANSPORT error code

This commit is contained in:
Andreas Öman 2010-05-27 17:51:24 +00:00
parent 03ac1348ba
commit 4216003f26
2 changed files with 3 additions and 0 deletions

View file

@ -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";

View file

@ -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