From a862d632b72effc85f0be6a068f1e4bfb8765418 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 6 Feb 2015 19:15:40 +0000 Subject: [PATCH] examples: test-uri: don't remove mount point after 10 seconds It's very irritating when trying to test stuff repeatedly and serves no real purpose other than showing that it can be done. --- examples/test-uri.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/examples/test-uri.c b/examples/test-uri.c index a5a3399..7bcb041 100644 --- a/examples/test-uri.c +++ b/examples/test-uri.c @@ -45,6 +45,7 @@ timeout (GstRTSPServer * server) return TRUE; } +#if 0 static gboolean remove_map (GstRTSPServer * server) { @@ -57,6 +58,7 @@ remove_map (GstRTSPServer * server) return FALSE; } +#endif int main (int argc, char *argv[]) @@ -110,9 +112,12 @@ main (int argc, char *argv[]) /* do session cleanup every 2 seconds */ g_timeout_add_seconds (2, (GSourceFunc) timeout, server); - /* remove the mount point after 10 seconds, new clients won't be able to use the - * /test url anymore */ + +#if 0 + /* remove the mount point after 10 seconds, new clients won't be able to use + * the /test url anymore */ g_timeout_add_seconds (10, (GSourceFunc) remove_map, server); +#endif /* start serving */ g_print ("stream ready at rtsp://127.0.0.1:%s/test\n", port); -- 2.7.4