- Added two new protocols: for the Juelich chopper and for SINQHM HTTP

This commit is contained in:
koennecke
2008-06-11 13:37:48 +00:00
parent 90497e4beb
commit c8b8d4f301
5 changed files with 314 additions and 2 deletions

11
psi.c
View File

@ -75,6 +75,11 @@ extern int MakeSansliRebin(SConnection *pCon, SicsInterp *pSics, void *pData,
/* from lmd200.c */
extern int MakeLMD200(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
/* from julchoprot.c */
extern void AddJulChoProtocoll();
/* from sinqhttpprot.c */
extern void AddHttpProtocoll();
/*--------------------------------------------------------------------------*/
void SiteInit(void) {
@ -93,6 +98,12 @@ void SiteInit(void) {
INIT(LinaStartup);
INIT(HaakeStartup);
INIT(AmiStartup);
/*
* SICS specific Asynchronous I/O protocols
*/
AddJulChoProtocoll();
AddHttpProtocoll();
}