PSI sics-cvs-psi_pre-ansto

This commit is contained in:
2003-06-13 00:00:00 +00:00
committed by Douglas Clowes
parent 2e3ddfb6c6
commit 3ffd0d8af4
1099 changed files with 318432 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