Displaying 10 results from an estimated 10 matches for "larval".
Did you mean:
varval
2001 Apr 05
1
bug in channel_still_open() ?
channel_still_open() does not count "larval" channels as open. If the server
sets up a protocol 2 connection with no remote command (as with "ssh -N ..."),
the "server-session" channel remains larval, and the server exits as soon as
it notices that there are no open channels besides this one. Typically, it
exits ri...
2005 Jul 28
2
lattice/ grid.layout/ multiple graphs per page
Background:
OS: Linux Mandrake 10.1
release: R 2.0.0
editor: GNU Emacs 21.3.2
front-end: ESS 5.2.3
---------------------------------
Colleagues
I have a set of lattice plots, and want to plot 4 of them on the page.
I am having trouble with the layout.
grid.newpage()
pushViewport(viewport(layout = grid.layout(2,2)))
pushviewport(viewport(layout.pos.col = 1, layout.pos.row = 1))
working trellis
2004 Jun 30
1
"break"/SIGINT handling
Hi,
Could anyone tell me why break requests are only handled in sshd if the channel type is in a 'LARVAL' state?
I'm converting an application that currently uses telnet as an underlying communication protocol and it relies on a SIGINT when an IAC/IP is received by the telnet daemon. It seems an SSH break could/should perform a similar function (tcsendbreak() in session_break_req() would cau...
2012 Jun 15
1
How do anova() and Anova(type="III") handle incomplete designs?
Hello all:
I am confused about the output from a lm() model with an incomplete
design/missing level.
I have two categorical predictors and a continuous covariate (day) that
I am using to model larval mass (l.mass):
leaf.species has three levels - map, syc, and oak
cond.time has two levels - 30 and 150.
There are no response values for Map-150, so that entire, two-way, level
is missing.
When running anova() on the model with Type I SS, the full factorial
design does not return errors; howe...
2013 Mar 14
0
Fw: showing ratio in ggplot bar plot with facets
...q(0,150,20)
AreaTidal.df<-subset(AreaTidalEnd.df, Depth>=0)
AreaTidal2003<-subset(AreaTidal.df, Year=="2003")
##Counts per Model and RA
update_stat_defaults("bin",aes(y=..density..))
qplot(Depth, data = AreaTidal2003, binwidth = 10, origin=0,xlim=c(0,150), ylab="Larval Ratio")+ scale_x_continuous(breaks = breaks, labels=breaks)+facet_grid(Release_Area~Model)
I would be hugely grateful for your help!
Melanie
____________________________________________
Melanie Z?lck (Zoelck)
PhD Candidate
Galway-Mayo Institute of Technology
Marine and Freshwater Research C...
2008 Jan 11
37
Proposal for how per dataset keys are initially setup
Anthony Scarpino wrote (elsewhere):
> While writing up the man page.. I thought of a few things that I was
> wondering if you considered..
>
> Can an encrypted dataset (keytype=dataset) reside in a non-encrypted (no
> kek defined) pool?
I can see a case for and against allowing this when considering it
purely at the feature level as users/admins see things.
The admin can
2008 Jan 11
37
Proposal for how per dataset keys are initially setup
Anthony Scarpino wrote (elsewhere):
> While writing up the man page.. I thought of a few things that I was
> wondering if you considered..
>
> Can an encrypted dataset (keytype=dataset) reside in a non-encrypted (no
> kek defined) pool?
I can see a case for and against allowing this when considering it
purely at the feature level as users/admins see things.
The admin can
2001 Feb 10
3
Protocol 2 remote forwarding patch
...hannels.h
--- openssh.orig/channels.h Tue Dec 5 20:11:48 2000
+++ openssh/channels.h Sat Feb 10 00:01:29 2001
@@ -49,7 +49,8 @@
#define SSH_CHANNEL_INPUT_DRAINING 8 /* sending remaining data to conn */
#define SSH_CHANNEL_OUTPUT_DRAINING 9 /* sending remaining data to app */
#define SSH_CHANNEL_LARVAL 10 /* larval session */
-#define SSH_CHANNEL_MAX_TYPE 11
+#define SSH2_CHANNEL_PORT_LISTENER 11
+#define SSH_CHANNEL_MAX_TYPE 12
/*
* Data structure for channel data. This is iniailized in channel_allocate
@@ -149,6 +150,9 @@
void channel_input_window_adjust(int type, int plen, void *ctxt...
2000 Aug 23
1
Protocol 2 remote forwarding patch
...2.1.1p4/channels.h Thu Jun 22 14:32:31 2000
+++ openssh-2.1.1p4-jhchanges/channels.h Tue Aug 22 21:36:16 2000
@@ -15,7 +15,13 @@
#define SSH_CHANNEL_INPUT_DRAINING 8 /* sending remaining data to conn */
#define SSH_CHANNEL_OUTPUT_DRAINING 9 /* sending remaining data to app */
#define SSH_CHANNEL_LARVAL 10 /* larval session */
-#define SSH_CHANNEL_MAX_TYPE 11
+#define SSH2_CHANNEL_PORT_LISTENER 11 /* Jarno: protocol 2 remote port
+ * listener. (needs different type
+ * because with protocol 2 remote
+ * forward the server sends
+...
2010 Jan 14
1
ssh(1) multiplexing rewrite
...NG:
case SSH_CHANNEL_CONNECTING:
case SSH_CHANNEL_ZOMBIE:
@@ -612,6 +615,8 @@ channel_open_message(void)
case SSH_CHANNEL_CLOSED:
case SSH_CHANNEL_AUTH_SOCKET:
case SSH_CHANNEL_ZOMBIE:
+ case SSH_CHANNEL_MUX_CLIENT:
+ case SSH_CHANNEL_MUX_LISTENER:
continue;
case SSH_CHANNEL_LARVAL:
case SSH_CHANNEL_OPENING:
@@ -622,12 +627,12 @@ channel_open_message(void)
case SSH_CHANNEL_INPUT_DRAINING:
case SSH_CHANNEL_OUTPUT_DRAINING:
snprintf(buf, sizeof buf,
- " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
+ " #%d %.300s (t%d r%d i%d...