Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个通过 TCP 连接与 Bittorrent 跟踪器对话的程序。我想扩展它的功能,通过 C++ 中的 winsock 同时与多个跟踪器通信。
我需要有多个插座吗?如果是这样,我是否需要为每个套接字初始化一个 WSADATA 结构?
每个 TCP 连接需要一个套接字,即每个远程 IP/端口对一个。你只需要调用WSAStartup一次来初始化winsock库。
WSAStartup