C UDP网络,从数据报消息中提取数字

时间:2012-03-26 13:39:49

标签: c udp packet datagram

我正在开发网络软件作为大学考试的一部分。该软件几乎完成,但实际上我正在完成并发部分(使用fork())。 我的需求是在客户端和服务器之间交换这两个消息作为握手。 这是一个例子: PING:3506:下载 PONG:5605

这是处理这些消息的方法: 在客户端,这是发送PING的主机:3506:DOWNLOAD,我写了

int *childLocalPort;
childLocalPort = malloc(sizeof(int));
childLocalPort[0] = (SERV_PORT_OFFSET + getPort(&portArray, &pidArray, &arrayCounter, cpid));

char *pingProcedureString;
pingProcedureString = malloc(30*sizeof(char));
strcpy(pingProcedureString, "PING:");

char *itoaPortBuffer;
itoaPortBuffer = malloc(6*sizeof(char));
itoa((childLocalPort[0]), itoaPortBuffer, 10);
strcat(pingProcedureString, itoaPortBuffer);
strcat(pingProcedureString, ":DOWNLOAD");
if (sendto(sockfd, pingProcedureString, strlen(pingProcedureString), 0, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0)
{
    perror("errore in sendto1");
    exit(1);
}
free(itoaPortBuffer);
free(pingProcedureString);



n = recvfrom(sockfd, buff, MAXLINE, 0, NULL, NULL);
buff[n] = 0;
if(strcmp(buff,"PONG"))
{
    int *childRemotePort;
    childRemotePort = malloc(sizeof(int));
    strtok(buff, ":");
    childRemotePort[0] = ntohs(strtok(NULL, ":"));

    printf("Remote port is %d\n", childRemotePort[0]);



    close(pipeLocalPort[0]);          /* Close unused read end */
    write(pipeLocalPort[1], childLocalPort, sizeof(int)
    close(pipeLocalPort[1]);          /* Reader will see EOF */
    close(pipeRemotePort[0]);
    write(pipeRemotePort[1], childRemotePort, sizeof(int));
    close(pipeRemotePort[1]);
}

在服务器端,即发送PONG的主机:5605,我写了

if ((n > 0) && strcmp(recvline,"PING"))
{
    int *childRemotePort;
    childRemotePort = malloc(sizeof(int));
    strtok(recvline, ":");
    char *buffTemp;
    buffTemp = calloc(5, sizeof(char));
    strcpy(buffTemp,strtok(NULL, ":"));
    childRemotePort[0] = ntohs(atoi(buffTemp));
    strtok(recvline, ":");
    printf("Remote child client port is: %d\n", childRemotePort[0]);
}

正如您所注意到的,PONG部分缺失,因为我想专注于第一个非工作部分。服务器正确接收(正如我从Wireshark看到的)消息PING:3506:DOWNLOAD,但他告诉我他收到了19476而不是3506,这不是真的。 我还注意到,如果我尝试发送数字消息而不将它们转换为网络字节顺序,事情会变得更糟。我很多天都在为此而战,我不知道该怎么想。

1 个答案:

答案 0 :(得分:1)

当你从客户端发送PING时,客户端在转换为ascii之前无法在整数端口上执行ntohs但是在服务器上接收时你执行ntohs,我认为这是导致错误。在客户端PING端在这些行上执行某些操作可能会有所帮助,但如果服务器和客户端的 endianness 不同,则仍然容易出错。

char *itoaPortBuffer;
itoaPortBuffer = malloc(6*sizeof(char));
itoa(ntohs(childLocalPort[0]), itoaPortBuffer, 10);
strcat(pingProcedureString, itoaPortBuffer);
strcat(pingProcedureString, ":DOWNLOAD");