0

我有一个大问题!我需要你的帮助!请帮我!

我在网上找到了一个 DTLS 实现的例子,叫做dtls_udp_echo.c. 我在函数中有以下代码,它描述了服务器的行为:

    memset(&client_addr, 0, sizeof(struct sockaddr_storage));


    /* Create BIO */

    bio = BIO_new_dgram(fd, BIO_NOCLOSE);


    /* Set and activate timeouts */

    timeout.tv_sec = 5;

    timeout.tv_usec = 0;

    BIO_ctrl(bio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);


    ssl = SSL_new(ctx);

    cout << "ssl is" << ssl ;

    printf("ssl is \n");

    SSL_set_bio(ssl, bio, bio);

    SSL_set_options(ssl, SSL_OP_COOKIE_EXCHANGE);


    while (DTLSv1_listen(ssl, &client_addr) <= 0){

        //printf("%d\n",DTLSv1_listen(ssl, &client_addr));

    }

    info = (struct pass_info*) malloc (sizeof(struct pass_info));

    memcpy(&info->server_addr, &server_addr, sizeof(struct sockaddr_storage));

    memcpy(&info->client_addr, &client_addr, sizeof(struct sockaddr_storage));

    info->ssl = ssl;

    if (pthread_create( &tid, NULL, connection_handle, info) != 0) {

        perror("pthread_create");

        exit(-1);

    }

}

THREAD_cleanup();

我已经创建了客户端,它已经向服务器发送了一条消息。使用 TCPDUMP 我可以看到该数据包

60. 250026 IP (tos 0x0, ttl 64, id 59389, offset 0, flags [DF], proto UDP (17), length 104) 127.0.0.1.8001 > 127.0.0.1.8000: UDP, length 76

在哪里:

127.0.0.1 port 8001 - client
127.0.0.1 port 8000 - server 

但是服务器似乎是盲目的,它没有向客户端发送握手。我相信地址是正确的,因为当我在实验期间更改它们时,客户端无法向服务器发送握手并且出现错误:

SSL_connect: Connection refused
error:00000000:lib(0):func(0):reason(0)

我的 openSSL 版本是 1.0.0d

谢谢你,朋友,你试着帮助我!

4

1 回答 1

1

很难确切地说出您的问题是什么,但是有一些想法可能会帮助您进行搜索。

设置消息和信息回调,info_cb 和 msg_cb 是你必须提供的函数:

SSL_set_info_callback(ssl, info_cb);
SSL_set_msg_callback(ssl, msg_cb);

DTLSv1_listen 是否会返回?在那种情况下,它会返回什么?

你也可以打电话

SSL_state_string_long(ssl)

这将返回对 ssl 的当前状态的描述。

如果您在 Windows 上,则您引用的示例不起作用,因为 Windows 不处理绑定到示例预期的相同地址和端口的多个 UDP 套接字。要解决此问题,请参阅http://www.net-snmp.org/wiki/index.php/DTLS_Implementation_Notes

于 2011-05-29T07:38:25.093 回答