1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Serial back end for Unix. Due to hardware limitations (no Linux box

I own has both an X display and a working serial port) I have been
unable to give this the full testing it deserves; I've managed to
demonstrate the basic functionality of Unix Plink talking to a
serial port, but I haven't been able to test the GTK front end. I
have no reason to think it will fail, but I'll be more comfortable
once somebody has actually tested it.

[originally from svn r6822]
This commit is contained in:
Simon Tatham
2006-08-28 14:29:02 +00:00
parent efd7cad3d2
commit 8c26b44ce6
7 changed files with 605 additions and 32 deletions

View File

@ -149,4 +149,9 @@ void *sk_getxdmdata(void *sock, int *lenp);
if (max < fd + 1) max = fd + 1; \
} while (0)
/*
* Exports from winser.c.
*/
extern Backend serial_backend;
#endif