Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Allow spaces in key names for textfile: saves
Peter Dinda [Thu, 27 Dec 2012 02:10:45 +0000 (20:10 -0600)]
linux_module/iface-keyed-stream.c

index 75978ab..c545fd7 100644 (file)
@@ -1449,7 +1449,7 @@ static v3_keyed_stream_key_t open_key_textfile(v3_keyed_stream_t stream,
     }
 
 
-    if (token_scan(ms,tempkey,keylen+3," \t\r\n",4)) { 
+    if (token_scan(ms,tempkey,keylen+3,"\t\r\n",3)) { 
       ERROR("Cannot scan for token (key search)\n");
       close_key_file(mks,ms);
       mks->stype=STREAM_TEXTFILE;