search for: my_addr

Displaying 4 results from an estimated 4 matches for "my_addr".

Did you mean: mb_addr
2001 Dec 05
1
DISPLAY=localhost
...variable and tries - * to set up a shared memory connection to the server, which it - * incorrectly supposes to be local. - * - * The workaround - as used in later $$H and other programs - is - * is to set display to the host's IP address. - */ - { - struct hostent *he; - struct in_addr my_addr; - - he = gethostbyname(hostname); - if (he == NULL) { - error("[X11-broken-fwd-hostname-workaround] Could not get " - "IP address for hostname %s.", hostname); - - packet_send_debug("[X11-broken-fwd-hostname-workaround]" - "Could not get IP address fo...
2001 Oct 07
3
socks and misc patch to 2.9.9p2
...+#undef Rfclose +#undef Rgethostbyname @BOTTOM@ diff -u openssh-2.9.9p2.old/channels.c openssh-2.9.9p2/channels.c --- openssh-2.9.9p2.old/channels.c Mon Sep 17 22:53:12 2001 +++ openssh-2.9.9p2/channels.c Sat Oct 6 17:09:30 2001 @@ -2481,7 +2481,12 @@ struct hostent *he; struct in_addr my_addr; +#if defined(SOCKS5) + he = Rgethostbyname(hostname); +#else + he = gethostbyname(hostname); +#endif if (he == NULL) { error("[X11-broken-fwd-hostname-workaround] Could not get " "IP address for hostname %s.", hostname); diff -u openssh-2.9.9p2.old/configure.i...
2002 May 11
4
socks5 support
...+#undef Rfclose +#undef Rgethostbyname @BOTTOM@ diff -u openssh-2.9.9p2.old/channels.c openssh-2.9.9p2/channels.c --- openssh-2.9.9p2.old/channels.c Mon Sep 17 22:53:12 2001 +++ openssh-2.9.9p2/channels.c Sat Oct 6 17:09:30 2001 @@ -2481,7 +2481,12 @@ struct hostent *he; struct in_addr my_addr; +#if defined(SOCKS5) + he = Rgethostbyname(hostname); +#else + he = gethostbyname(hostname); +#endif if (he == NULL) { error("[X11-broken-fwd-hostname-workaround] Could not get " "IP address for hostname %s.", hostname); diff -u openssh-2.9.9p2.old/configure.i...
2019 Mar 27
26
Call for testing: OpenSSH 8.0
Hi, OpenSSH 8.0p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is also available via git using the instructions at