From: Andreas Ă–man Date: Thu, 27 May 2010 17:51:24 +0000 (+0000) Subject: Add SM_CODE_NO_TRANSPORT error code X-Git-Tag: 2.12~176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4216003f26b62b112fbe22faefbd0b7fc68a7789;p=thirdparty%2Ftvheadend.git Add SM_CODE_NO_TRANSPORT error code --- diff --git a/src/streaming.c b/src/streaming.c index 443db958b..62c06a878 100644 --- a/src/streaming.c +++ b/src/streaming.c @@ -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"; diff --git a/src/tvhead.h b/src/tvhead.h index 07b7f2630..0561bed4c 100644 --- a/src/tvhead.h +++ b/src/tvhead.h @@ -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