similar to: [PATCH] Fix control persist and stdio forward interaction

Displaying 20 results from an estimated 100 matches similar to: "[PATCH] Fix control persist and stdio forward interaction"

2011 Oct 16
4
[Bug 1943] New: [PATCH] ssh -W opens two connections when ControlPersist is enabled.
https://bugzilla.mindrot.org/show_bug.cgi?id=1943 Bug #: 1943 Summary: [PATCH] ssh -W opens two connections when ControlPersist is enabled. Classification: Unclassified Product: Portable OpenSSH Version: 5.9p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority:
2010 Jan 28
1
Possible issue with stdio forwarding
Greetings, I've been doing a little testing with the stdio forwarding support added in recent snapshots and have encountered one possible issue. First, I should say that this feature generally seems to work. However, I haven't been able to get it to work when connecting to a server running SSH.COM's product. The config file I am using is fairly simple: Host sfe1 LogLevel debug3
2012 May 03
5
[PATCH/RFC 0/6] New mux client request to list open tcp forwardings.
These patches implement a new mux client request to list the currently opened TCP forwardings. It also removes some todos regarding keeping the list of forwardings in the options up-to-date. Bert Wesarg (6): attach the forwarding type to struct Forward merge local and remote forward lists generate unique ids for forwardings to be used for identification remove closed forwardings from
2020 Mar 14
2
ssh -f and -O ControlPersist=yes, ControlMaster=yes leaves stderr open
Hi I'm trying to wrap ssh in an application using glib. For now, I'm launching the ssh client in master mode and want it to detach, keeping the control socket around. I figured I could do that using the -f flag and the usual Control* options to force ssh to daemonize (ideally without executing any command), but it turns out that glib doesn't recognize the daemonized process as
2006 Dec 12
0
perl on CentOS 4.4 : PERLIO=perlio vs stdio, readline error handling
I sometimes use an example from readline entry in perlfunc(1). This used to work for me, but know (after I upgraded to CentOS) works only if PERLIO=stdio is defined in environment. See the following: [xx at xx testreadline]$ cat testreadline.pl #!/usr/bin/perl use warnings; use strict; for my $fn (@ARGV) { local (*F); open F, "< $fn" or die "open err for fn=$fn: $!";
2009 Oct 27
0
unicorn 0.93.4 - *BSD stdio compatibility
Unicorn is a HTTP server for Rack applications designed to only serve fast clients on low-latency, high-bandwidth connections and take advantage of features in Unix/Unix-like kernels. Slow clients should only be served by placing a reverse proxy capable of fully buffering both the the request and response in between Unicorn and slow clients. * http://unicorn.bogomips.org/ * mongrel-unicorn at
2009 Nov 11
0
R installer can't find math.h, stdio.h
This is possibly the wrong list, but anyway ... Using Linux Debian-4.0 Etch (regularly upgraded). I set about installing Simon Woods' "soap" package -- see: http://www.maths.bath.ac.uk/~sw283/simon/software.html So I downloaded the tar archive soap_0.1-3.tar.gz and then ran (as root) R CMD INSTALL as follows (and with the following errors): # R CMD INSTALL
2006 May 24
0
SSH Doesn't Close stdio/err When Backgrounded
Hi, I've recently started employing the opportunistic multiplexing feature, and I've come across what seems like a bug. Here's how it goes: in Fedora Core 5 I run the Gnome terminal application, and open two terminals (two tabs). In the first terminal I initiate an ssh connetion that becomes the master for multiplexing; in the second terminal I open a second terminal session to
2005 Feb 21
0
lseek depends upon stdio.h?
Hi folks, Shouldn't the lseek macros (SEEK_SET, etc) go to unistd.h? Regards Harri -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 256 bytes Desc: OpenPGP digital signature Url : http://www.vas.nu/pipermail/klibc/attachments/20050213/9790028c/signature.bin
2007 Aug 16
1
stdio
Hi, I have experimentally done a branch of klibc with buffered stdio support. It seems to add about 1.5K of code (for x86-64), which isn't so bad, except that it means that *every* program now pulls in stdio, which in turn depends on malloc() and some other pieces of code. I have not yet implemented fscanf(), however, which may cause additional bloat. As of this point, I'm a bit
2012 May 22
0
[klibc:master] include: [stdio.h] add clearerr() prototype
Commit-ID: bf526ecf1bb5c36c7f86464ed33dde836c2d8c04 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=bf526ecf1bb5c36c7f86464ed33dde836c2d8c04 Author: maximilian attems <max at stro.at> AuthorDate: Tue, 22 May 2012 22:04:05 +0200 Committer: maximilian attems <max at stro.at> CommitDate: Tue, 22 May 2012 22:04:05 +0200 [klibc] include: [stdio.h] add clearerr()
2010 Jan 07
1
[PATCH] qemu: Upstream regression of -stdio serial option.
I've tested this with both upstream qemu from git, and the old non-broken qemu from Fedora 12. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 80 OCaml packages (the OPEN alternative to F#) http://cocan.org/getting_started_with_ocaml_on_red_hat_and_fedora -------------- next part
2014 May 28
0
Re: redirecting guest stdio to the host
On 05/28/2014 09:14 AM, Alexander Binun wrote: [can you convince your mailer to wrap long lines?] > > I have a program running on a VM guest. Its output is valuable (for VM introspection) so I want to let the host module know about it. I prefer to redirect ' stdio" of a guest into a device at the host (a text file or my device that has the name "mydev" > and the
2010 Jun 21
0
[LLVMdev] stdio.h implemented as a late-binding driver
Hello LLVM Devs, I've written a wrapper for stdio.h that allows LibC functions and constants to be converted into a late-binding driver. The purpose for this is to allow bitcode files written with this wrapper to access files portably cross-platform. Since the driver is intended to be included with a generic program installer for each supported platform, I'm interested in knowing how
2011 Dec 16
0
[LLVMdev] striping of stdio information in llvm-gcc and clang
On Thu, Dec 15, 2011 at 6:08 PM, Linlin Cheng <linlin at caltech.edu> wrote: > Hi, > > I have the following test code print.c: > > #include <stdio.h> > > int main(){ >        fprintf(stderr, "Error!\n"); >        return 0; > } > > I did the following on linux to cross-compile it for Sparc architecture: > clang -m32 -c print.c -emit-llvm
2011 Dec 17
0
[LLVMdev] striping of stdio information in llvm-gcc and clang
Thanks! On Thu, Dec 15, 2011 at 10:39 PM, Joerg Sonnenberger <joerg at britannica.bec.de> wrote: > On Thu, Dec 15, 2011 at 08:43:01PM -0800, Eli Friedman wrote: >> clang's cross-compilation support isn't really mature; you might be >> able to get away with specifying "-ccc-host-triple sparc-sun-solaris >> -nostdinc -I /path/to/sparc/headers/". >
2011 Dec 20
1
[LLVMdev] striping of stdio information in llvm-gcc and clang
Hi Joerg, How do I find /path/to/sparc/headers/? Many hanks, Christine On Fri, Dec 16, 2011 at 5:50 PM, Linlin Cheng <linlin at caltech.edu> wrote: > Thanks! > > On Thu, Dec 15, 2011 at 10:39 PM, Joerg Sonnenberger > <joerg at britannica.bec.de> wrote: >> On Thu, Dec 15, 2011 at 08:43:01PM -0800, Eli Friedman wrote: >>> clang's cross-compilation
2013 Nov 20
0
[LLVMdev] clang.exe: fatal error: 'stdio.h' file not found
Andrew, This might be offtopic for llvmdev. I suggest the mailing list, cfe-users. > * clang.exe version 3.4 (trunk), from LLVM 3.4.svn How did you build it? clang.exe depends on crt libraries, either mingw32 or msvcrt. Please try (and watch their output); > clang --version > clang -v -O2 -o hello.exe hello.c Please confirm; - Which library did you install? Visual studio or
2004 May 23
1
stdio to port forward?
All-- I'm attempting to implement something I've wanted for a while...a stdio link to a TCP port forward, at least for SSH2, but preferably for either protocol. There's certainly no technical reason this can't be done, but the vagaries of terminal / file descriptor handling are posing something of a challenge. Does anyone have any suggestions for "correct"
2015 Jun 23
2
[PATCH] Allow forwarding of stdio to streamlocal end points
Later versions of OpenSSH allow the user to forward connections also to/from Unix sockets. This patch allows to use Unix sockets as the target when forwarding the local stdio using the -W feature. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Allow-forwarding-of-stdio-to-streamlocal-end-points.patch Type: application/text Size: 5796 bytes Desc: not