Julio Beltran Ortega
Julio Beltran Ortega
In [8](https://github.com/mkj/sunset/pull/29/commits/83198616852b86be062e11beeca24276f50953e7) and [9](https://github.com/mkj/sunset/pull/29/commits/1afb2235dd51304c016d0d8f46a2be44652b8be7) I have fixed the CI issue
After that I have: - added SSHDecode for StatusCode in [10](https://github.com/mkj/sunset/pull/29/commits/05b92a56315c51316ad1be068e4505fbfc202652), - added SSHEncode/Decode for name[11](https://github.com/mkj/sunset/pull/29/commits/39e72c3c1aa777e8c112281e850f599a83ca13d0) - and in the rest of the commits I have been uncommenting more bits...
We have a complete, not complaining sftp/src/proto.rs. However I restricted the lifetime for `SftpPacket` and `decode_{response, request}` methods so it has the same lifetime as `SSHSource`. This might have consequences...
Hi again, I am starting to process the sftp subsystem, I have deserialized `init` packets and the first request `SSH_FXP_REALPATH` packet using the definitions and functions of `sftp/src/proto.rs`. The demo...
I am working on providing basic functionality to handle the sftp initialisation and adjusting the sftpserver trait to expose as little as possible protocol details to the user. I also...
At this point, I need to handle the case where after extracting from the `buffer_in` a sensible SFTP request, I have left only a fragment of a request that cannot...
Thanks for the ideas. For now I am writing a helper where I can take enough data from buffer in to get the size and packet type packet type. In...
Thanks to @mkj original design of structures in proto.rs, there is only one entity that for now cannot be used in `no_std` context. This is Name, the response for `SSH_FXP_READDIR`...
Hi again @mkj, I think that I finally understand what you where suggesting that could work. A visitor pattern to avoid borrowing/lifetime issues while allowing iteratively process the directory elements....
In the commit [Fixed Status Encoding..](https://github.com/mkj/sunset/pull/29/commits/c7927451757426b9a98f9ae3dbc1b05a43caaad8)and the previous one, I came across with the fact that sshwire-derive does not encode enum values. Therefore, SSHEncoding structures with enum fields would not...