Right now we're taking an ad hoc approach to option parsing: when we need a new option to check either how to parse a String (User) or an integer (Port`), we add it and expand the definition of the library to cover it.
At some point it will make sense to produce a complete listing of what options libssh2 supports, and comparing the list of options we handle against that.
Ideally this would be in the form of an automated test, so we could get actionable feedback about what changes if/when libssh2 grows to support new functionality.
Right now we're taking an ad hoc approach to option parsing: when we need a new option to check either how to parse a String (
User) or an integer (Port`), we add it and expand the definition of the library to cover it.At some point it will make sense to produce a complete listing of what options
libssh2supports, and comparing the list of options we handle against that.Ideally this would be in the form of an automated test, so we could get actionable feedback about what changes if/when
libssh2grows to support new functionality.