*** empty log message ***

This commit is contained in:
koennecke
2007-11-27 13:36:15 +00:00
parent 1265ae957b
commit 22b0e8ec83
50 changed files with 6025 additions and 171 deletions

View File

@@ -320,7 +320,21 @@ int StateMonAction(SConnection *pCon, SicsInterp *pSics, void *pData,
SCRegister(pCon,pSics, self->pCall,lID);
SCSendOK(pCon);
return 1;
}
} else if(strcmp(argv[1],"start") == 0) {
if(argc > 2){
InvokeCallBack(self->pCall,STSTART,argv[2]);
SCSendOK(pCon);
return 1;
}
return 0;
} else if(strcmp(argv[1],"stop") == 0) {
if(argc > 2){
InvokeCallBack(self->pCall,STEND,argv[2]);
SCSendOK(pCon);
return 1;
}
return 0;
}
SCWrite(pCon,"ERROR: keyword not recognized",eError);
return 0;