C++ 中的套接字编程

谁能给我一些关于在 C++ 中使用套接字连接客户端和服务器的示例.我已经阅读了一些教程,现在我想实现它.如何开始?

Can anybody provide me some sample example on Client and server connection using sockets in C++. I have gone through some tutorials now i want to implement it. How to start ?

推荐答案

你可以在这里找到一个工作的客户端-服务器程序:Beej 网络编程指南

You can find a working client-server program here: Beej's Guide to Network Programming

相关文章