Teodor Milkov

Results 12 comments of Teodor Milkov

Wow, that's a swift reaction, thanks! 0.29.3 (bad) vs 0.29.6 (good).

I've just hit the double Reply-To: issue, because yahoo is rejecting such emails lately.

Here's an updated patch, that fixes the issue for me: ```diff --- ezmlm-get.c.original 2020-11-18 15:20:29.084183718 +0200 +++ ezmlm-get.c 2020-11-30 16:02:12.002512268 +0200 @@ -1030,6 +1030,7 @@ if (to >= u +...

I see in Guacamole they set a special libssh2 callback: https://github.com/apache/guacamole-server/blob/master/src/protocols/ssh/ssh.c#L307 But there's no such thing as LIBSSH2_CALLBACK_AUTH_AGENT in current libssh2

And finally I tried with debug enabled libssh2 and here are the last few things that happen: ``` [libssh2] 0.328471 Conn: starting request(exec) on channel 0/0, message=ssh-add -l => libssh2_transport_write...

IMHO, it should catch this case like that (and also update documentation) until it is actually supported: ```diff --git a/src/packet.c b/src/packet.c index 9897f77..f4ae950 100644 --- a/src/packet.c +++ b/src/packet.c @@ -984,6...

On 1.12.20 г. 18:54, Panos wrote: > > Agent forwarding should work, it was added in #219 > > > Complete code to reproduce would be good. The example script...

I'll try to explain what I think is the problem, maybe as a non-native speaker I can't get the idea across. My understanding of how ssh agent forwarding works is...

I found the set of patches implementing auth agent forwarding used by the apache guacamole server: https://jira.glyptodon.com/browse/GUAC-432

First, thank you for your work on this project! I've been trying to use russh to implement a very simple SSH client with support for agent forwarding, but I'm struggling...