Displaying 5 results from an estimated 5 matches for "host_len".
Did you mean:
vhost_len
2005 Oct 06
1
buffer overflow in ip
This comse from iproute-ss050901, rebuilt on FC4 with -fortify-source
option. Seems like ip has a buffer overflow which sometimes causes a
segfault..
will try to look at it tmrw, so far here''s my gdb output.
$ gdb ip
GNU gdb Red Hat Linux (6.3.0.0-1.21rh)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you
are
welcome
2000 Aug 13
1
Patches for openssh port forwarding
...d port forward request.");
+ packet_send_debug("Server configuration rejects port forwardings.");
+ packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
+ packet_put_int(remote_channel);
+ packet_send();
+ return;
+ }
/* Get host name to connect to. */
host = packet_get_string(&host_len);
diff -u -r openssh-2.1.1p4/servconf.c openssh-2.1.1p4-jhchanges/servconf.c
--- openssh-2.1.1p4/servconf.c Sat Jul 15 07:14:17 2000
+++ openssh-2.1.1p4-jhchanges/servconf.c Sun Aug 13 00:06:25 2000
@@ -45,6 +45,7 @@
options->x11_forwarding = -1;
options->x11_display_offset = -1;
option...
2000 Aug 23
1
Protocol 2 remote forwarding patch
...NEL_OPEN_FAILURE.
*/
-
void
-channel_input_port_open(int type, int plen)
+channel_input_port_open(int type, int plen, int remote_channel)
{
u_short host_port;
char *host, *originator_string;
- int remote_channel, sock = -1, newch, i, denied;
+ int sock = -1, newch, i, denied;
unsigned int host_len, originator_len;
-
- /* Get remote channel number. */
- remote_channel = packet_get_int();
/* Get host name to connect to. */
host = packet_get_string(&host_len);
diff -u -r openssh-2.1.1p4/channels.h openssh-2.1.1p4-jhchanges/channels.h
--- openssh-2.1.1p4/channels.h Thu Jun 22 14:32:31...
1999 Dec 10
5
openssh on AIX v4.3.3 with native compiler
Hello,
Was looking in the archives... and haven't seen this one listed.
When I compile openssh-1.2pre17 on AIX v4.3.3 with the native compiler
I get the following errors. I haven't see this __attribute__ code.. What
compiler/libraries are needed to compile this? I have seen that people
have compiled openssh on AIX.. Just wondering what you have used.
# make
cc -g
2000 Jan 19
3
AIX openssh patches
...kaddr addr;
! #ifdef _AIX
! unsigned long addrlen;
! #else
! int addrlen;
! #endif
! int newsock, i, newch, len;
Channel *ch;
char buf[16384], *remote_hostname;
***************
*** 1005,1011 ****
struct sockaddr_in sin;
char *host, *originator_string;
struct hostent *hp;
! int host_len, originator_len;
/* Get remote channel number. */
remote_channel = packet_get_int();
--- 1010,1016 ----
struct sockaddr_in sin;
char *host, *originator_string;
struct hostent *hp;
! unsigned int host_len, originator_len;
/* Get remote channel number. */
remote_channel =...