C编程,通过udp发送wav文件

C prorgramming, send wav file over udp

我创建了一个 UDP client/server 通信以测试发送 wav 文件,客户端每次向服务器发送 2048 个文件样本的缓冲区。问题是,对于每个缓冲区,只有缓冲区的前半部分(1024 个样本)被正确发送,我无法找出这个错误背后的原因。

客户端代码如下:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#define SERVER "127.0.0.1"
#define BUFLEN1 512
#define BUFLEN2 2048
#define PORT 8888
void die(char *s)
{
    perror(s);
    exit(1);
}

int main(void)
{
    struct sockaddr_in si_other;
    int s, i, slen=sizeof(si_other);
    char fileaddress[BUFLEN1];
    short buf[BUFLEN2];
    FILE *file;
    int k;

    if ( (s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
    {
        die("socket");
    }

    memset((char *) &si_other, 0, sizeof(si_other));
    si_other.sin_family = AF_INET;
    si_other.sin_port = htons(PORT);

    if (inet_aton(SERVER , &si_other.sin_addr) == 0)
    {
        fprintf(stderr, "inet_aton() failed\n");
        exit(1);
    }

    printf("Enter file address: ");
    gets(fileaddress);
    file=fopen(fileaddress,"rb");
    while ((k = fread(buf, sizeof(short), BUFLEN2, file)) > 0) {
        if (sendto(s, buf, BUFLEN2 , 0 , (struct sockaddr *) &si_other, slen)==-1)
        {
            die("sendto()");
        }
    }

    close(s);
    return 0;
}

服务器代码:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#define SERVER "127.0.0.1"
#define BUFLEN2 2048
#define PORT 8888

void die(char *s)
{
    perror(s);
    exit(1);
}
int main(void)
{
    struct sockaddr_in si_me, si_other;

    int s, i, slen = sizeof(si_other) , recv_len;
    short buf[BUFLEN2];

    //create a UDP socket
    if ((s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
    {
        die("socket");
    }

    // zero out the structure
    memset((char *) &si_me, 0, sizeof(si_me));

    si_me.sin_family = AF_INET;
    si_me.sin_port = htons(PORT);
    si_me.sin_addr.s_addr = htonl(INADDR_ANY);

    //bind socket to port
    if( bind(s , (struct sockaddr*)&si_me, sizeof(si_me) ) == -1)
    {
        die("bind");
    }
    printf("Waiting for data...\n");
    fflush(stdout);
    while(1)
    {
        recv_len = recvfrom(s, buf, BUFLEN2, 0, (struct sockaddr *) &si_other, &slen);
        if (recv_len == -1)
        {
            die("recvfrom()");
        }
    }
    close(s);
    return 0;
}

这很可能是因为 window 大小(一个数据包中可以发送的数据量)或轻量级 IP 堆栈大小(我相信这更有可能),这与您可以在一次函数调用中发送的最大总字节数。

如果问题出在 window 大小,您可以拆分数据并在数据到达时重新 assemble 在客户端中。 如果它是堆栈大小,您可以简单地查找它的定义位置并更改它

我看到您的库不包含 lwip,但无论您使用什么,它在概念上都必须相似。

希望对您有所帮助。

在这里,您正在(可能多达)(BUFLEN2*sizeof(short)) 个字节读入您的缓冲区:

while ((k = fread(buf, sizeof(short), BUFLEN2, file)) > 0) {

... 在这里您将 BUFLEN2 字节发送到 UDP 套接字:

 if (sendto(s, buf, BUFLEN2, 0 , (struct sockaddr *) &si_other, slen)==-1)

... 在这里您从 UDP 套接字接收(可能多达)BUFLEN2 个字节:

recv_len = recvfrom(s, buf, BUFLEN2, 0, (struct sockaddr *) &si_other, &slen);

我认为您需要做的是在您的 sendto() 调用中将 BUFLEN2 替换为 k*sizeof(short),并在您的 recvfrom() 调用,以便您发送和接收所有数据,而不仅仅是前半部分。