> I'd have to say no. There are structures used but not documented and the
> one line description of some of the functions could be open to
> interpretation. Sample usage is never amiss in my estimation.
If we are thinking of the same structures they are not supposed to be
documented. Notice even in tls.h they are just
struct tls;
struct tls_config;
They compiler doesn't even know what's in them. They are pointers. Use
tls_config_new and tls_{client,server} to get one and don't think about
what might be inside them.
-- Martin