--- linuxsampler/trunk/src/network/lscp.y 2004/10/09 00:46:18 274 +++ linuxsampler/trunk/src/network/lscp.y 2005/02/21 04:28:50 397 @@ -105,6 +105,7 @@ | SET SP set_instruction { $$ = $3; } | SUBSCRIBE SP subscribe_event { $$ = $3; } | UNSUBSCRIBE SP unsubscribe_event { $$ = $3; } + | SELECT SP text { $$ = LSCPSERVER->QueryDatabase($3); } | RESET SP CHANNEL SP sampler_channel { $$ = LSCPSERVER->ResetChannel($5); } | RESET { $$ = LSCPSERVER->ResetSampler(); } | QUIT { LSCPSERVER->AnswerClient("Bye!\r\n"); return LSCP_QUIT; } @@ -399,6 +400,9 @@ UNSUBSCRIBE : 'U''N''S''U''B''S''C''R''I''B''E' ; +SELECT : 'S''E''L''E''C''T' + ; + CHANNEL : 'C''H''A''N''N''E''L' ;