From: Jaroslav Kysela Date: Wed, 23 Jan 2019 06:59:50 +0000 (+0100) Subject: satip client: fix the network limit/group description X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d3aa11940ac7aec1238a16264c73b366970b27b;p=thirdparty%2Ftvheadend.git satip client: fix the network limit/group description --- diff --git a/src/input/mpegts/satip/satip_satconf.c b/src/input/mpegts/satip/satip_satconf.c index b8d17214c..8560ef9b9 100644 --- a/src/input/mpegts/satip/satip_satconf.c +++ b/src/input/mpegts/satip/satip_satconf.c @@ -392,11 +392,9 @@ const idclass_t satip_satconf_class = { .type = PT_INT, .id = "network_limit", - .name = N_("Network limit per position"), - .desc = N_("Concurrent limit per network position (src=) " - "for satellite SAT>IP tuners. " - "The first limit number is for src=1 (AA), second " - "for src=2 (AB) etc."), + .name = N_("Network limit per group"), + .desc = N_("Concurrent input limit per network group " + "for satellite SAT>IP tuners."), .opts = PO_EXPERT, .off = offsetof(satip_satconf_t, sfc_network_limit), }, @@ -404,7 +402,10 @@ const idclass_t satip_satconf_class = .type = PT_INT, .id = "network_group", .name = N_("Network group"), - .desc = N_("Define network group to limit network usage."), + .desc = N_("Define network group to limit network usage (value 1-1000). " + "All SAT>IP positions in the same group must have " + "identical network limit, otherwise the limiting " + "will not work correctly."), .opts = PO_EXPERT, .off = offsetof(satip_satconf_t, sfc_network_group), },