svinz

Results 3 comments of svinz

Yeah, I saw the `tls_context` in `client.py`. After having a look at [tls_set in paho.mqtt.client](https://github.com/eclipse/paho.mqtt.python/blob/d7592a64b55469035ab66160919561c30ae5f645/src/paho/mqtt/client.py#L760), it seems rather ok to implement this. I made a small test by copy&paste from...

I was more in to the not so elegant, but simple, solution, by using a `@staticmethod` and using the code from Paho `Client.tls_set`: ```python class Tls_set: @staticmethod def tls_set(ca_certs=None, certfile=None,...

Hard to disagree with your thoughts... I'll see if I can follow your design suggestions and come up with something. Alex