@djungelorm I have a question regarding the c++ documentation.
in the documentation, class Client has a void func close() but I can't seem to use this func.
krpc::Client conn = krpc::connect("blah", "xxx.xxx.x.x",xxxx,xxxx);
conn.close(); //I tried this but the error says there is no member close() of krpc::Client
Is there a way to close the connection?
Thank you