首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
udpserver专题
UdpServer
// UdpServer.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> #include <stdio.h> #include <WinSock2.h> #pragma comment(lib, "ws2_32.lib") using namespace st
阅读更多...
C++之基于Winsock2封装UDPServer与UDPClient
文章目录 Socket过程UDPServer.hUDPServer.cppUDPClient.hUDPClient.cppmain.cppCMakeLists.txt测试截图 Socket过程 UDPServer UDPClient UDPServer.h #ifndef UDPSERVER_H_INCLUDED#define UDPSERVER_H_INCLU
阅读更多...