summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-14 10:47:15 +1100
committerDamien Miller <djm@mindrot.org>1999-12-14 10:47:15 +1100
commita34a28bf86c04eb35c522b1e31c32e94edf355d2 (patch)
treeb048bcbc954cae87930fe287a92197abccceb1de /ssh.h
parentc6b3bbe2b991f4f87ca1f8214f43c13a5a73f385 (diff)
- OpenBSD CVS Changes
- [canohost.c] fix get_remote_port() and friends for sshd -i; Holger.Trapp@Informatik.TU-Chemnitz.DE - [mpaux.c] make code simpler. no need for memcpy. niels@ ok - [pty.c] namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org fix proto; markus - [ssh.1] typo; mark.baushke@solipsa.com - [channels.c ssh.c ssh.h sshd.c] type conflict for 'extern Type *options' in channels.c; dot@dotat.at - [sshconnect.c] move checking of hostkey into own function. - [version.h] OpenSSH-1.2.1
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh.h b/ssh.h
index facd88a09..86780c0fd 100644
--- a/ssh.h
+++ b/ssh.h
@@ -13,7 +13,7 @@
13 * 13 *
14 */ 14 */
15 15
16/* RCSID("$Id: ssh.h,v 1.19 1999/12/07 04:38:32 damien Exp $"); */ 16/* RCSID("$Id: ssh.h,v 1.20 1999/12/13 23:47:16 damien Exp $"); */
17 17
18#ifndef SSH_H 18#ifndef SSH_H
19#define SSH_H 19#define SSH_H
@@ -589,7 +589,7 @@ char *channel_open_message(void);
589 */ 589 */
590void 590void
591channel_request_local_forwarding(u_short port, const char *host, 591channel_request_local_forwarding(u_short port, const char *host,
592 u_short remote_port); 592 u_short remote_port, int gateway_ports);
593 593
594/* 594/*
595 * Initiate forwarding of connections to port "port" on remote host through 595 * Initiate forwarding of connections to port "port" on remote host through
@@ -633,7 +633,7 @@ char *x11_create_display(int screen);
633 * Returns a suitable value for the DISPLAY variable, or NULL if an error 633 * Returns a suitable value for the DISPLAY variable, or NULL if an error
634 * occurs. 634 * occurs.
635 */ 635 */
636char *x11_create_display_inet(int screen); 636char *x11_create_display_inet(int screen, int x11_display_offset);
637 637
638/* 638/*
639 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains 639 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains