Hi, If my openvpn plugin spawns its own thread and from that thread wants to kill a tunnel specified by IP:port how can that be done? (something like what the 'telnet' management provides: "kill IP:port") This plugin is meant to do other stuff and in certain scenarios wants to close specific tunnels. First I thought of using the plugin to write code to establish a telnet-client sessions and send over "kill IP:port" command. But I notice an issue with the management listener: if I run more than 1 telnet session only the first one can pass through data whereas all others' telnet sessions just hang.
Is this even possible? Vineet