Displaying 2 results from an estimated 2 matches for "stdout_writ".
Did you mean:
  stdout_write
  
2010 Apr 09
1
[PATCH] Add SSH transfer method
...path => $path,
+                             host => $uri->host,
+                             output => $msg)));
+    }
+
+    return $vol;
+}
+
+sub _connect
+{
+    my ($host, $username, $path) = @_;
+
+    my ($stdin_read, $stdin_write);
+    my ($stdout_read, $stdout_write);
+    my ($stderr_read, $stderr_write);
+
+    pipe($stdin_read, $stdin_write);
+    pipe($stdout_read, $stdout_write);
+    pipe($stderr_read, $stderr_write);
+
+    my $pid = fork();
+    if ($pid == 0) {
+        my @command;
+        push(@command, 'ssh');
+        push(@command, '...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...host => $uri->host,
-                             output => $msg)));
-    }
-
-    return $vol;
-}
-
-sub _connect
-{
-    my ($host, $username, $path) = @_;
+    my $self = {};
+    bless($self, $class);
 
     my ($stdin_read, $stdin_write);
     my ($stdout_read, $stdout_write);
@@ -137,22 +44,8 @@ sub _connect
         my @command;
         push(@command, 'ssh');
         push(@command, '-l', $username) if (defined($username));
-        push(@command, $host);
-
-        # Return the size of the remote path on the first line, followed by its
-        # c...