我有工作代码,其中两个对等点通过中继服务器(coturn)进行连接,而在伪tcp上一切似乎都很好。我已经成功测试了与nice_agent_attach_recv()nice_agent_get_io_stream()的消息交换。

但是,当我尝试创建一个GTlsClientConnection时,我会回来:0:TLS support is not available

这是一些部分代码:

   if(!nice_agent_set_relay_info(agent, stream_id,
       NICE_COMPONENT_TYPE_RTP,
       "my.coturn.server",
       5349, //tls-listener-port (I also tried the non tls port: 3478)
       username.c_str(),
       password.c_str(),
       NICE_RELAY_TYPE_TURN_TCP))
   {
        printf("error setting up relay info\n");
   }

   ...

   //after state has changed to NICE_COMPONENT_STATE_READY

   ...

   io_stream = nice_agent_get_io_stream (agent, stream_id, component_id);
   input = g_io_stream_get_input_stream (G_IO_STREAM (io_stream));
   output = g_io_stream_get_output_stream (G_IO_STREAM (io_stream));

   GIOStream* tlsConnection  = g_tls_client_connection_new
                               (G_IO_STREAM (io_stream), NULL, &error);

   /////////////////////////
   /// error == 0 (TLS support is not available)


我是libnice和glib的新手。因此,我可能缺少一些基本知识。

最佳答案

可能需要安装glib-networking软件包。

关于ssl - 使用libnice创建GTlsClientConnection时,“TLS支持不可用”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33175049/

10-11 05:19