1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-05 21:42:47 -05:00

Mark Baker's raw-TCP back end (untested and experimental as yet)

[originally from svn r266]
This commit is contained in:
Simon Tatham
1999-11-01 16:40:40 +00:00
parent 2ec48b843b
commit 6693daa636
7 changed files with 266 additions and 22 deletions

View File

@ -93,7 +93,7 @@ typedef struct {
/* Basic options */
char host[512];
int port;
enum { PROT_TELNET, PROT_SSH } protocol;
enum { PROT_RAW, PROT_TELNET, PROT_SSH } protocol;
int close_on_exit;
/* SSH options */
int nopty;
@ -203,6 +203,12 @@ void term_deselect (void);
void term_update (void);
void term_invalidate(void);
/*
* Exports from raw.c.
*/
Backend raw_backend;
/*
* Exports from telnet.c.
*/