QTcpSocket 是否可以释放其描述符,以便可以将套接字的所有权转移到不同线程上的另一个 QTcpSocket 对象或 QSslSocket,而无需关闭/中断套接字?
socket1.setDescriptor(descriptor);
// .....
descriptor = socket1.descriptor();
socket1.release(); // <--- Is there a way to do this?
socket2.setSocketDescriptor(descriptor);