Differences From Artifact [53041b9dfe]:
- File sftp.c — part of check-in [0d8a92d58d] at 2001-08-26 13:32:28 on branch trunk — PSCP now uses the modern SFTP protocol if it can, and falls back to scp1 if it can't. Currently not very tested - I checked it in as soon as it completed a successful recursive copy in both directions. Also, one known bug: you can't specify a remote wildcard, because by the nature of SFTP we'll need to implement the wildcard engine on the client side. I do intend to do this (and use the same wildcard engine in PSFTP as well) but I haven't got round to it yet. (user: simon size: 20647)
To Artifact [24e9c63e06]:
- File sftp.c — part of check-in [21dd6de37e] at 2001-11-14 06:58:42 on branch trunk — Yikes! sftp.c wasn't using the misc.h wrappered malloc functions, meaning that PSFTP couldn't meaningfully be debugged using Minefield. That's what I get for developing it under Unix and forgetting to port it properly :-/ (user: simon size: 20597)
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + - - - - | /* * sftp.c: SFTP generic client code. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include "misc.h" #include "int64.h" #include "sftp.h" |
| ︙ |