VC++如何获取IP数据报的源目的地址
发布网友
发布时间:2022-05-02 08:37
我来回答
共1个回答
热心网友
时间:2023-10-14 03:41
#include <windows.h>
#include <stdio.h>
#pragma comment(lib, "ws2_32.lib")
char buf[4096] = ""; int len = 4096;
struct sockaddr_in from; int sz = 0;
int x = recvfrom(socket, buf, len, 0, (struct sockaddr *)&from, &sz);
printf("源地址:%s\n", inet_ntoa(&from));