summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/packet.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2018-07-09 21:20:27 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2018-07-09 21:20:27 +0000
commit3e48ff42e1ac615c9535907eb6b38bb5d8bbc577 (patch)
tree4d1c759a4fb7b09c7ad14f1bc0773f248797cf8e /usr.bin/ssh/packet.h
parent54ce0dc4e28a072a31db4bdcb09caa02e6d66953 (diff)
ttymodes: switch to sshbuf API; ok djm@
Diffstat (limited to 'usr.bin/ssh/packet.h')
-rw-r--r--usr.bin/ssh/packet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/packet.h b/usr.bin/ssh/packet.h
index 6d270c33947..1c67b9f653a 100644
--- a/usr.bin/ssh/packet.h
+++ b/usr.bin/ssh/packet.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: packet.h,v 1.85 2018/07/06 09:03:02 sf Exp $ */
+/* $OpenBSD: packet.h,v 1.86 2018/07/09 21:20:26 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -133,8 +133,8 @@ int ssh_packet_not_very_much_data_to_write(struct ssh *);
int ssh_packet_connection_is_on_socket(struct ssh *);
int ssh_packet_remaining(struct ssh *);
-void tty_make_modes(int, struct termios *);
-void tty_parse_modes(int, int *);
+void ssh_tty_make_modes(struct ssh *, int, struct termios *);
+void ssh_tty_parse_modes(struct ssh *, int);
void ssh_packet_set_alive_timeouts(struct ssh *, int);
int ssh_packet_inc_alive_timeouts(struct ssh *);