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

@ -69,4 +69,11 @@ void unix_setup_config_box(struct controlbox *b, int midsession)
}
}
/*
* Serial back end is available on Unix. However, we have to
* mask out a couple of the configuration options: mark and
* space parity are not conveniently supported, and neither is
* DSR/DTR flow control.
*/
ser_setup_config_box(b, midsession, 0x07, 0x07);
}