From 7f43aa1a51d00f407ea5c734f4d5647a9978572f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sat, 28 Feb 2009 22:27:55 +0000 Subject: [PATCH] HTSP: Include application name in getInfo response. --- htsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/htsp.c b/htsp.c index 0c141429..e2ceeae2 100644 --- a/htsp.c +++ b/htsp.c @@ -547,6 +547,7 @@ htsp_method_getInfo(htsp_connection_t *htsp, htsmsg_t *in) htsmsg_t *r = htsmsg_create(); htsmsg_add_u32(r, "protover", HTSP_PROTO_VERSION); + htsmsg_add_str(r, "appname", "HTS Tvheadend"); htsmsg_add_str(r, "appver", htsversion); return r;