UDP套接字(DGRAM)绑定/发送错误

时间:2014-09-07 16:14:25

标签: c sockets udp bind sendto

我是UDP套接字的新手,我之前使用过TCP。看来我的客户端无法连接到我的服务器,但我不知道问题出在哪里。

当我运行我的服务器时,它看起来一切正常。编译并运行没有问题,并等待来自客户端的消息。

另一方面,客户端失败,编译没有问题,但在运行时抛出了bind()错误。我在其他地方看到绑定并不总是必要所以我也尝试删除它,但是当我这样做时,错误出现在sendto()上。我使用perror()来尝试找到问题。在绑定中,消息是“地址已在使用中”,在sendto中是“协议不支持的地址族”。

我不知道我的做法是否错误。我尝试了几种方法,但似乎没有任何工作。任何帮助将不胜感激。

服务器代码:

int main (){
    int sockfd, newsockfd;
    int portno;
    socklen_t tamcli;
    struct sockaddr_in dest, sa;
    char* mensaje;

    bzero((char *) &dest, sizeof(dest));
    portno = 5001;
    mensaje = (char*)malloc(sizeof(char)*100);

    sockfd = socket(PF_INET, SOCK_DGRAM, 0);
    if (sockfd < 0){
        printf("ERROR al abrir socket\n");
        perror("sockto");
        exit(1);
    }

    dest.sin_family = AF_INET;
    dest.sin_port = htons(portno);
    dest.sin_addr.s_addr = INADDR_ANY;
    tamcli = sizeof(sa);

    if (bind(sockfd, (struct sockaddr *) &dest, sizeof(dest)) < 0){
        printf("ERROR en enlazar\n");
        perror("bind");
        exit(1);
    }


    newsockfd = recvfrom(sockfd, mensaje, sizeof(mensaje), 0,(struct sockaddr *)&sa, &tamcli);
    if (newsockfd < 0){
        printf("ERROR en aceptar el mensaje\n");
        perror("recvfrom");
        exit(1);
    }

    printf("El mensaje del cliente fue: %s\n", mensaje);

    close(sockfd);
}

客户代码:

int main (){
    int sockfd, newsockfd;
    int portno;
    socklen_t tamcli;
    struct sockaddr_in dest, sa;
    char* mensaje;

    bzero((char *) &dest, sizeof(dest));
    portno = 5001;
    mensaje = (char*)malloc(sizeof(char)*100);
    tamcli = sizeof(sa);

    mensaje = "Hola";

    sockfd = socket(PF_INET, SOCK_DGRAM, 0);
    if (sockfd < 0){
        printf("ERROR al abrir socket\n");
        perror("socket");
        exit(1);
    }

    dest.sin_family = AF_INET;
    dest.sin_port = htons(portno);
    if (inet_aton("127.0.0.1", &dest.sin_addr) == 0){
        printf("Error conectandose a la direccion");
        perror("inet_aton");
        exit(1);
    }

    if (bind(sockfd, (struct sockaddr *) &dest, sizeof(dest)) < 0){
        printf("ERROR en enlazar\n");
        perror("bind");
        exit(1);
    }


    newsockfd = sendto(sockfd, mensaje, sizeof(mensaje), 0, (struct sockaddr *) &sa, tamcli);
    if (newsockfd < 0){
        printf("ERROR en enviar el mensaje\n");
        perror("sendto");
        exit(1);
    }

    close(sockfd);
}

1 个答案:

答案 0 :(得分:1)

您无法在客户端和服务器程序中绑定到同一端口(在同一台计算机上) - 只有其中一个端口可以拥有该端点。

你的args to sendto()看起来也错了,它被定义为:

 ssize_t sendto(int s, const void *msg, size_t len, int flags,
                const struct sockaddr *to, socklen_t tolen);