Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mdhelp: add satip server mux handling table.
  • Loading branch information
Mark Clarkstone authored and perexg committed May 27, 2016
1 parent e08f479 commit c3cb86a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
7 changes: 7 additions & 0 deletions docs/property/satip_muxhandling.md
@@ -0,0 +1,7 @@
:

Option | Description
-----------------|------------
**Auto** | Keep the mux if it doesn't already exist.
**Keep** | Always keep the mux regardless of whether it exists or not.
**Reject** | Always reject.
11 changes: 5 additions & 6 deletions src/satip/server.c
Expand Up @@ -567,6 +567,7 @@ static htsmsg_t *satip_server_class_muxcfg_list ( void *o, const char *lang )
}

CLASS_DOC(satip_server)
PROP_DOC(satip_muxhandling)

const idclass_t satip_server_class = {
.ic_snode = (idnode_t *)&satip_server_conf,
Expand Down Expand Up @@ -652,14 +653,12 @@ const idclass_t satip_server_class = {
.type = PT_INT,
.id = "satip_muxcnf",
.name = N_("Mux handling"),
.desc = N_("Select how Tvheadend should handle muxes. "
"Auto = accept the mux if it "
"doesn't already exist. Keep = Always keep the mux"
"regardless of whether it exists or not. Reject = "
"Always reject."),
.desc = N_("Select how Tvheadend should handle muxes. See Help "
"for details."),
.doc = prop_doc_satip_muxhandling,
.off = offsetof(struct satip_server_conf, satip_muxcnf),
.list = satip_server_class_muxcfg_list,
.opts = PO_EXPERT,
.opts = PO_EXPERT | PO_DOC_NLIST,
.group = 1,
},
{
Expand Down

0 comments on commit c3cb86a

Please sign in to comment.