diff options
Diffstat (limited to 'frontend_svr.c')
-rw-r--r-- | frontend_svr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend_svr.c b/frontend_svr.c index 509117d5..0694e0f9 100644 --- a/frontend_svr.c +++ b/frontend_svr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.c,v 1.23 2006-10-07 19:54:05 phintuka Exp $ + * $Id: frontend_svr.c,v 1.24 2006-10-18 08:41:08 phintuka Exp $ * */ @@ -1223,6 +1223,9 @@ void cXinelibServer::Handle_Control(int cli, const char *cmd) } } + } else if(!strncmp(cmd, "TRACKMAP ", 9)) { + cXinelibThread::InfoHandler(cmd); + } else if(!strncasecmp(cmd, "GRAB ", 5)) { Handle_Control_GRAB(cli, cmd+5); |