Re: Using SSL socket as stdin for subprocess.Popen

2016-03-22 Thread dieter
Matt Ruffalo writes: > ... > I've been using SSL for the communication between the client and server, > ... > I've hit an issue that I'm not sure how to work through, though. I'm > attempting to use a SSL socket (and/or the result of its 'makefile' > method) directly as the `stdin` argument to sub

Re: Using SSL socket as stdin for subprocess.Popen

2016-03-21 Thread Chris Angelico
On Sun, Mar 20, 2016 at 4:44 AM, Matt Ruffalo wrote: > Hi all- > > I'm writing a backup client for automating the synchronization of btrfs > snapshots between machines -- essentially piping the output of `btrfs > send` on my laptop/desktop to `btrfs receive` on a server. I've been > doing this man

Using SSL socket as stdin for subprocess.Popen

2016-03-21 Thread Matt Ruffalo
Hi all- I'm writing a backup client for automating the synchronization of btrfs snapshots between machines -- essentially piping the output of `btrfs send` on my laptop/desktop to `btrfs receive` on a server. I've been doing this manually for quite a while, and something automated would be much mo