search for: proto_len

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

2002 Sep 16
2
privsep versus compression
...ssion.c 2002-05-13 02:48:58.000000000 +0200 +++ openssh/session.c 2002-09-04 08:45:10.000000000 +0200 [...] @@ -165,8 +252,8 @@ Session *s; char *command; int success, type, screen_flag; - int compression_level = 0, enable_compression_after_reply = 0; - u_int proto_len, data_len, dlen; + int enable_compression_after_reply = 0; + u_int proto_len, data_len, dlen, compression_level = 0; s = session_new(); s->authctxt = authctxt; @@ -192,6 +279,10 @@ compression_level);...
2001 Jun 05
1
OpenSSH tmp cleanup
Hi, I noticed that Markus has fixed the temporary file cleanup problems in OpenSSH cvs. What files need patching for this ? I only noticed changes in: session.c, channels.h and channels.c. -Jarno -- Jarno Huuskonen <Jarno.Huuskonen at uku.fi>
2000 Jan 19
3
AIX openssh patches
...*)&dlen); packet_integrity_check(dlen, strlen(term), type); /* packet_integrity_check(plen, 4 + dlen + 4*4 + n_bytes, type); */ /* Remaining bytes */ *************** *** 1648,1655 **** packet_disconnect("Protocol error: X11 display already set."); { int proto_len, data_len; ! proto = packet_get_string(&proto_len); ! data = packet_get_string(&data_len); packet_integrity_check(plen, 4 + proto_len + 4 + data_len + 4, type); } if (packet_get_protocol_flags() & SSH_PROTOFLAG_SCREEN_NUMBER) --- 1681,1688 ---- packet_disco...
2001 Oct 24
2
disable features
...(options.kerberos_ticket_cleanup) krb4_cleanup_proc(authctxt); @@ -181,9 +185,15 @@ { Session *s; char *command; - int success, type, plen, screen_flag; + int success, type, plen; + u_int dlen; +#ifdef WITH_COMPRESSION int compression_level = 0, enable_compression_after_reply = 0; - u_int proto_len, data_len, dlen; +#endif +#ifdef WITH_X11FWD + u_int proto_len, data_len; + int screen_flag; +#endif s = session_new(); s->authctxt = authctxt; @@ -202,6 +212,7 @@ /* Process the packet. */ switch (type) { case SSH_CMSG_REQUEST_COMPRESSION: +#ifdef WITH_COMPRESSION packet_inte...