/[svn]/linuxsampler/trunk/src/network/lscpserver.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscpserver.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 905 by schoenebeck, Sun Jul 23 16:23:13 2006 UTC revision 942 by schoenebeck, Sat Nov 25 18:07:34 2006 UTC
# Line 322  bool LSCPServer::GetLSCPCommand( std::ve Line 322  bool LSCPServer::GetLSCPCommand( std::ve
322                                  continue; //Ignore CR                                  continue; //Ignore CR
323                          if (c == '\n') {                          if (c == '\n') {
324                                  LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Received \'" + bufferedCommands[socket] + "\' on socket", socket));                                  LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Received \'" + bufferedCommands[socket] + "\' on socket", socket));
325                                  bufferedCommands[socket] += "\n";                                  bufferedCommands[socket] += "\r\n";
326                                  return true; //Complete command was read                                  return true; //Complete command was read
327                          }                          }
328                          bufferedCommands[socket] += c;                          bufferedCommands[socket] += c;
# Line 1582  String LSCPServer::GetServerInfo() { Line 1582  String LSCPServer::GetServerInfo() {
1582      LSCPResultSet result;      LSCPResultSet result;
1583      result.Add("DESCRIPTION", "LinuxSampler - modular, streaming capable sampler");      result.Add("DESCRIPTION", "LinuxSampler - modular, streaming capable sampler");
1584      result.Add("VERSION", VERSION);      result.Add("VERSION", VERSION);
1585      result.Add("PROTOCOL_VERSION", "1.0");      result.Add("PROTOCOL_VERSION", "1.1");
1586      return result.Produce();      return result.Produce();
1587  }  }
1588    

Legend:
Removed from v.905  
changed lines
  Added in v.942

  ViewVC Help
Powered by ViewVC