Я создал UDP-соединение клиент / сервер, чтобы проверить отправку 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;
}