summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-12-19 17:58:01 +0000
committerKevin Steves <stevesk@pobox.com>2001-12-19 17:58:01 +0000
commit366298c696e8c5b27bd27d683ea7b8bf30564362 (patch)
tree0bc22c3d8df006b97799a6ff491fe15ed6da8cdd /channels.h
parent73f57be5003c6c36d74c90a14156e2f88946ee6c (diff)
- (stevesk) OpenBSD CVS sync X11 localhost display
- stevesk@cvs.openbsd.org 2001/11/29 14:10:51 [channels.h channels.c session.c] sshd X11 fake server will now listen on localhost by default: $ echo $DISPLAY localhost:12.0 $ netstat -an|grep 6012 tcp 0 0 127.0.0.1.6012 *.* LISTEN tcp6 0 0 ::1.6012 *.* LISTEN sshd_config gatewayports=yes can be used to revert back to the old behavior. will control this with another option later. ok markus@ - stevesk@cvs.openbsd.org 2001/12/19 08:43:11 [includes.h session.c] handle utsname.nodename case for FamilyLocal X authorization; ok markus@
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.h b/channels.h
index f58c7283c..840268fcf 100644
--- a/channels.h
+++ b/channels.h
@@ -32,7 +32,7 @@
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */ 34 */
35/* RCSID("$OpenBSD: channels.h,v 1.52 2001/11/29 19:06:39 stevesk Exp $"); */ 35/* RCSID("$OpenBSD: channels.h,v 1.53 2001/11/29 21:10:51 stevesk Exp $"); */
36 36
37#ifndef CHANNEL_H 37#ifndef CHANNEL_H
38#define CHANNEL_H 38#define CHANNEL_H
@@ -197,7 +197,7 @@ channel_request_forwarding(const char *, u_short, const char *, u_short, int,
197/* x11 forwarding */ 197/* x11 forwarding */
198 198
199int x11_connect_display(void); 199int x11_connect_display(void);
200char *x11_create_display_inet(int, int); 200int x11_create_display_inet(int, int);
201void x11_input_open(int, int, void *); 201void x11_input_open(int, int, void *);
202void x11_request_forwarding(void); 202void x11_request_forwarding(void);
203void x11_request_forwarding_with_spoofing(int, const char *, const char *); 203void x11_request_forwarding_with_spoofing(int, const char *, const char *);