]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Add SM_CODE_NO_TRANSPORT error code
authorAndreas Öman <andreas@lonelycoder.com>
Thu, 27 May 2010 17:51:24 +0000 (17:51 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Thu, 27 May 2010 17:51:24 +0000 (17:51 +0000)
src/streaming.c
src/tvhead.h

index 443db958b228ba44bbaf56ae08bab39ff5b3eadb..62c06a87806b81ef805eecd750b92d58c409671f 100644 (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";
index 07b7f263076b7684a573543c8511f6fbf76fc014..0561bed4c6839c7e86c4a934dbb03fc4ecf402df 100644 (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