On Mon, 30 Nov 2020, at 13:38, Jean-Paul Calderone wrote:
> On Mon, Nov 30, 2020 at 6:48 AM Peter Westlake
> wrote:
>> __
>> I'm studying an SSH client implementation using Conch, and was surprised to
>> see that the ClientFactory subclass had a connect() method which calls
>> connectTCP. This
On Mon, Nov 30, 2020 at 6:48 AM Peter Westlake
wrote:
> I'm studying an SSH client implementation using Conch, and was surprised
> to see that the ClientFactory subclass had a connect() method which calls
> connectTCP. This isn't really a problem - the code works - but it seems
> like an odd plac
> On 30. Nov 2020, at 05:48, Peter Westlake wrote:
>
>
> I'm studying an SSH client implementation using Conch, and was surprised to
> see that the ClientFactory subclass had a connect() method which calls
> connectTCP. This isn't really a problem - the code works - but it seems like
> an
I'm studying an SSH client implementation using Conch, and was surprised to see
that the ClientFactory subclass had a connect() method which calls connectTCP.
This isn't really a problem - the code works - but it seems like an odd place
to do the connection. Am I right to be surprised?
Peter.__