Displaying 6 results from an estimated 6 matches for "u_in".
Did you mean:
gu_in
2003 Oct 07
2
Fwd: Re: Bus Error with OpenSSH 3.7.1p2 on Solaris 8, SPARC 64-bit, YASSP
...file:
>
/usr/local/src/security/openssh/cvs/openssh_cvs/session.c,v
> retrieving revision 1.255
> diff -u -p -r1.255 session.c
> --- session.c 22 Sep 2003 11:04:23 -0000 1.255
> +++ session.c 29 Sep 2003 23:34:10 -0000
> @@ -915,7 +915,7 @@ read_etc_default_login(char
> ***env, u_in
> {
> char **tmpenv = NULL, *var;
> u_int i, tmpenvsize = 0;
> - mode_t mask;
> + u_long mask;
>
> /*
> * We don't want to copy the whole file to the
> child's environment,
> @@ -936,7 +936,7 @@ read_etc_default_login(char
> ***env, u_in
>...
2003 Sep 29
1
Bus Error with OpenSSH 3.7.1p2 on Solaris 8, SPARC 64-bit, YASSP
I had a problem much like the one that Matthias Koeppe
experienced. I would only get the BUS error when
running in a YASSP-modified system, though. The
binary worked fine on a non-YASSP host.
I applied his change to use a long for the mask, and
it works now.
Cheers,
-Thomas
__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
2007 Jun 14
0
random effects in logistic regression (lmer)-- identification question
...vidual
level random effect in a logistic regression. Is it meaningful to ask
"is that individual level random effect different for people of
different races?" If so, How can I estimate that? If e_i is the
implicit random error, can I ask for another random effect for
Nonwhites only, say u_iN, in a model like so:
z_i = a + b*x_i + e_i + u_iN
Suppose the unique respondent number is ID and we create a new variable
NonwhiteID = 0 for Nonwhites
= ID for Nonwhites
Here's my idea about how to check to see if the individual level
variance component for Nonwhites is dif...
2009 Feb 17
2
Idea: reverse socks proxy
Hi,
Just a usecase that I'm sure has been covered before but just in case
its not an openssh solution would be very helpful.
I was trying to install software on a server that was firewalled so no
outbound http connections would work. I was also tunnelling via
another server. Outbound ssh connections also were a convenient option.
What would have been nice would be a remote version of
2006 Jan 08
3
Allow --without-privsep build.
..., client_user, hostname, ipaddr);
+#ifdef USE_PRIVSEP
if (!use_privsep)
+#endif
auth_debug_send();
return ret;
}
--- openssh-4.2p1/auth2.c~ 2005-07-17 08:26:44.000000000 +0100
+++ openssh-4.2p1/auth2.c 2006-01-07 18:52:24.000000000 +0000
@@ -175,8 +175,10 @@ input_userauth_request(int type, u_int32
use_privsep ? " [net]" : "");
authctxt->service = xstrdup(service);
authctxt->style = style ? xstrdup(style) : NULL;
+#ifdef USE_PRIVSEP
if (use_privsep)
mm_inform_authserv(service, style);
+#endif
} else if (strcmp(user, authctxt->user) != 0 ||...
2010 Jan 14
1
ssh(1) multiplexing rewrite
...l_check_window(Channel *c)
{
if (c->type == SSH_CHANNEL_OPEN &&
@@ -1785,10 +1779,130 @@ channel_post_open(Channel *c, fd_set *re
if (!compat20)
return;
channel_handle_efd(c, readset, writeset);
- channel_handle_ctl(c, readset, writeset);
channel_check_window(c);
}
+static u_int
+read_mux(Channel *c, u_int need)
+{
+ char buf[CHAN_RBUF];
+ int len;
+ u_int rlen;
+
+/* debug3("%s: channel %d: entering, need %u have %u",
+ __func__, c->self, need, buffer_len(&c->input)); */
+ if (buffer_len(&c->input) < need) {
+ rlen = need - buffer_len(&...