summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authormouring <mouring>2001-04-14 23:13:02 +0000
committermouring <mouring>2001-04-14 23:13:02 +0000
commitbf228a1b1e4460e199e00a5d14b998203cde453b (patch)
treeb57233d90196f69c986e41ef176305d3d670c5d8 /packet.h
parent8f54fe074af61d667bbdbc9586adc16365655287 (diff)
downloadopenssh-bf228a1b1e4460e199e00a5d14b998203cde453b.tar.gz
- stevesk@cvs.openbsd.org 2001/04/14 16:33:20
[clientloop.c packet.h session.c ssh.c ttymodes.c ttymodes.h] protocol 2 tty modes support; ok markus@
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet.h b/packet.h
index e5432714..0f5e7104 100644
--- a/packet.h
+++ b/packet.h
@@ -11,7 +11,7 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-/* RCSID("$OpenBSD: packet.h,v 1.21 2001/02/28 21:27:47 markus Exp $"); */
+/* RCSID("$OpenBSD: packet.h,v 1.22 2001/04/14 16:33:20 stevesk Exp $"); */
#ifndef PACKET_H
#define PACKET_H
@@ -178,8 +178,8 @@ extern int max_packet_size;
int packet_set_maxsize(int s);
#define packet_get_maxsize() max_packet_size
-/* Stores tty modes from the fd into current packet. */
-void tty_make_modes(int fd);
+/* Stores tty modes from the fd or tiop into current packet. */
+void tty_make_modes(int fd, struct termios *tiop);
/* Parses tty modes for the fd from the current packet. */
void tty_parse_modes(int fd, int *n_bytes_ptr);