mirror of
https://git.savannah.gnu.org/git/screen.git
synced 2026-04-20 02:36:20 +02:00
20 lines
423 B
C
20 lines
423 B
C
#ifndef SCREEN_TELNET_H
|
|
#define SCREEN_TELNET_H
|
|
|
|
#include "config.h"
|
|
|
|
#include "window.h"
|
|
|
|
#ifdef ENABLE_TELNET
|
|
int TelOpenAndConnect(Window *);
|
|
int TelIsline(Window *);
|
|
void TelProcessLine(char **, size_t *);
|
|
int DoTelnet(char *, size_t *, int);
|
|
int TelIn(Window *, char *, size_t, int);
|
|
void TelBreak(Window *);
|
|
void TelWindowSize(Window *);
|
|
void TelStatus(Window *, char *, size_t);
|
|
#endif
|
|
|
|
#endif /* SCREEN_TELNET_H */
|