View | Details | Raw Unified | Return to bug 2477 | Differences between
and this patch

Collapse All | Expand All

(-)a/PROTOCOL (+5 lines)
Lines 328-333 a server may offer multiple keys of the same type for a period (to Link Here
328
give clients an opportunity to learn them using this extension) before
328
give clients an opportunity to learn them using this extension) before
329
removing the deprecated key from those offered.
329
removing the deprecated key from those offered.
330
330
331
2.6. connection: add IUTF8 terminal mode flag
332
333
OpenSSH supports the IUTF8 terminal mode flag and encodes it in "pty-req"
334
messages as opcode value 42.
335
331
3. SFTP protocol changes
336
3. SFTP protocol changes
332
337
333
3.1. sftp: Reversal of arguments to SSH_FXP_SYMLINK
338
3.1. sftp: Reversal of arguments to SSH_FXP_SYMLINK
(-)a/ttymodes.h (+3 lines)
Lines 127-132 TTYMODE(IXOFF, c_iflag, 40) Link Here
127
#ifdef IMAXBEL
127
#ifdef IMAXBEL
128
TTYMODE(IMAXBEL,c_iflag, 41)
128
TTYMODE(IMAXBEL,c_iflag, 41)
129
#endif /* IMAXBEL */
129
#endif /* IMAXBEL */
130
#ifdef IUTF8
131
TTYMODE(IUTF8,	c_iflag, 42)
132
#endif /* IUTF8 */
130
133
131
TTYMODE(ISIG,	c_lflag, 50)
134
TTYMODE(ISIG,	c_lflag, 50)
132
TTYMODE(ICANON,	c_lflag, 51)
135
TTYMODE(ICANON,	c_lflag, 51)

Return to bug 2477