Fabio

Results 10 issues of Fabio

Hi! Now the URI is being url-decoded before being handled by on_uri_match() and unconditionally(): this is useful in case of html forms.

The proposed changes make the library compile and work also on Qt4.8, except for some of the tests, for I didn't put much effort into understanding how to backport them....

The available algorithms can currently be configured only at compile time. It would be useful to have the possibility to compile them in, but enable/disable them at runtime in the...

Clamp buffer size to maxPktSz * 8, we don't want to allocate the entire 4GB window for each session. However, grow the buffer within reason during rekeying, to buffer the...

This patch makes it possible to do asynchronous user authentication, by returning WOLFSSH_USERAUTH_WOULD_BLOCK from the authentication callback.

A callback is optionally invoked on keying completion. From within this callback it's possible to invoke wolfSSH_GetText() to get a textual representation of a few internal variables, identified by the...

Make wolfSSH_SFTPNAME_readdir overridable when defining WOLFSSH_USER_FILESYSTEM and SFTP_Name_readdir. SFTP_Name_readdir has to be defined as a macro, but it can be defined to expand to its own name if also a...

Hi, While integrating wolfSSH within FileZilla Professional Enterprise Server, which exposes its own filesystem abstraction, I found the need to modify some functions in wolfsftp.c. Specifically, I aimed to return...

Hi! First off, thanks for your work. I've played around the concept a bit, and came up with a solution that is much simpler. Haven't tested it thoroughly, so I...