- Added SicsList

- Removed group and description attributes from ObjectDescriptor
This commit is contained in:
koennecke
2006-01-16 08:32:17 +00:00
parent a5f315b56a
commit 0f22d2b0fa
12 changed files with 473 additions and 12 deletions

4
psi.c
View File

@ -54,7 +54,7 @@
#include "sinq.h"
#include "tabledrive.h"
#include "amorset.h"
#include "sinqhttp.h"
/*
from tcpdornier.c
*/
@ -259,6 +259,8 @@ static HistDriver *CreatePsiHistMem(char *name, pStringDict pOptions){
pNew = CreateSINQDriver(pOptions);
} else if(strcmp(name,"tdc") == 0){
pNew = MakeTDCHM(pOptions);
} else if(strcmp(name,"sinqhttp") == 0){
pNew = CreateSinqHttpDriver(pOptions);
}
return pNew;
}