On disconnect, TCPGOSSIP does not close the the socket to the GossipRouter (RouterStub.destroy()). On connect, however, we create a new connection.
On multiple connects and disconnects, we leak sockets (netstat -an|grep 12001 shows a lot of ESTABLISHED sockets).
Simple fix: call RouterStub.destroy() on disconnect.