将以太网(UDP)帧发送到其他PC

时间:2018-06-07 10:14:40

标签: c++ sockets networking udp ethernet

我正在尝试使用C ++将UDP帧从我的笔记本电脑发送到另一台PC作为客户端 - 服务器应用程序。我正在使用WireShark监视以太网端口,我没有看到从我的笔记本电脑发送任何信息。有人可以帮忙吗?我错过了一个重要的步骤吗?

/*
Simple udp client
*/

#include "stdafx.h"
#define _WINSOCK_DEPRECATED_NO_WARNINGS

#include<stdio.h>
#include<winsock2.h>

#pragma comment(lib,"ws2_32.lib") //Winsock Library

#define SERVER "10.222.14.229"
#define BUFLEN 512
#define PORT 8888

int main(void)
{
    struct sockaddr_in si_other;
    int s, slen = sizeof(si_other);
    char buf[BUFLEN];
    char message[BUFLEN];
    char message1[] = "Hello";
    WSADATA wsa;

    //Initialise winsock
    printf("\nInitialising Winsock...");
    if (WSAStartup(MAKEWORD(2, 2), &wsa) != 0)
    {
        printf("Failed. Error Code : %d", WSAGetLastError());
        exit(EXIT_FAILURE);
    }
    printf("Initialised.\n");

    //create socket
    if ((s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == SOCKET_ERROR)
    {
        printf("socket() failed with error code : %d", WSAGetLastError());
        exit(EXIT_FAILURE);
    }

    memset((char *)&si_other, 0, sizeof(si_other));
    si_other.sin_family = AF_INET;
    si_other.sin_port = htons(PORT);
    si_other.sin_addr.S_un.S_addr = inet_addr(SERVER);
    while (1)
    { 
        if (sendto(s, message1, strlen(message1), 0, (struct sockaddr *) &si_other, slen) == SOCKET_ERROR)
        {
            printf("sendto() failed with error code : %d", WSAGetLastError());
            exit(EXIT_FAILURE);
        } 
    memset(buf, '\0', BUFLEN);   
        puts(buf);
    }
    closesocket(s);
    WSACleanup();
    return 0;
}

2 个答案:

答案 0 :(得分:1)

该代码没有任何问题 - 它在这里运行正常(除了繁忙的循环)。之一:

  • 数据包没有通过网络传输,可能是因为没有路由到10.222.14.229(尝试ping它),或
  • WireShark运行不正常(它可以看到您笔记本电脑的其他流量吗? - 它可能有一个过滤器集等)

如果您怀疑WireShark,您可以随时尝试Microsoft Network Monitor

答案 1 :(得分:1)

此线程的解决方案:

WireShark在Windows 10上安装时缺少Pincap库。

安装Pincap库可以解决此问题。