Initial revision

This commit is contained in:
cvs
2000-02-07 10:38:55 +00:00
commit fdc6b051c9
846 changed files with 230218 additions and 0 deletions

27
telnet.h Normal file
View File

@ -0,0 +1,27 @@
/*-------------------------------------------------------------------------
S I C S T E L N E T S U P P O R T
This file defines the telnet task function and its associated data
structures. The body of the telnet handling code lives in the network
reader module.
Mark Koennecke, January 1998
---------------------------------------------------------------------------*/
#ifndef SICSTELNET
#define SICSTELNET
typedef struct __TelTask *pTelTask;
/*--------------------------------------------------------------------------*/
pTelTask CreateTelnet(SConnection *pCon);
void DeleteTelnet(void *pData);
/*---------------------------------------------------------------------------*/
int TelnetTask(void *pData);
void TelnetSignal(void *pData, int iSignal, void *pSigData);
/*--------------------------------------------------------------------------*/
void InstallTelnet(void);
void KillTelnet(void);
#endif