#ifndef TELNET_H
#define TELNET_H

extern int maxConnections;


OSERROR *telnet_initialise(void);
OSERROR *telnet_finalise(void);
void telnet_open_connection(SOCKET masterSocket);
void telnet_close_connection(int s);


#endif
