summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup_menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup_menu.c b/setup_menu.c
index 6da197c7..145a153f 100644
--- a/setup_menu.c
+++ b/setup_menu.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: setup_menu.c,v 1.15 2006-11-05 16:48:35 phintuka Exp $
+ * $Id: setup_menu.c,v 1.16 2006-12-14 12:42:14 phintuka Exp $
*
*/
@@ -1228,6 +1228,8 @@ void cMenuSetupRemote::Set(void)
&newconfig.remote_rtp_ttl, 1, 10));
Add(new cMenuEditBoolItem(tr(" Transmit always on"),
&newconfig.remote_rtp_always_on));
+ Add(new cMenuEditBoolItem(tr(" SAP announcements"),
+ &newconfig.remote_rtp_sap));
}
Add(new cMenuEditBoolItem(tr(" PIPE transport"),
&newconfig.remote_usepipe));
@@ -1287,6 +1289,7 @@ void cMenuSetupRemote::Store(void)
SetupStore("Remote.Rtp.Port", xc.remote_rtp_port);
SetupStore("Remote.Rtp.TTL", xc.remote_rtp_ttl);
SetupStore("Remote.Rtp.AlwaysOn", xc.remote_rtp_always_on);
+ SetupStore("Remote.Rtp.SapAnnouncements", xc.remote_rtp_sap);
cXinelibDevice::Instance().Listen(xc.remote_mode, xc.listen_port);
}