- Added a variable terminator protocol driver for scriptcontext and

velocity selectors.
- Fixed sanswave to work with the new velocity selector driver
- Changed pfeifferprot to replace <ENQ> which caused problems with
  GTSE to @ENQ@
This commit is contained in:
koennecke
2009-05-26 09:38:31 +00:00
parent caf59ef8eb
commit 5faf542574
3 changed files with 58 additions and 2 deletions

View File

@ -16,7 +16,7 @@ static int PfeifferHandler(Ascon *a)
switch(a->state){
case AsconWriteStart:
if(strstr(GetCharArray(a->wrBuffer),"<ENQ>") != NULL) {
if(strstr(GetCharArray(a->wrBuffer),"@ENQ@") != NULL) {
AsconWriteChars(a->fd,&c,1);
a->state = AsconWriteDone;
return 1;