" TLS支持不可用"使用libnice

时间:2015-10-16 16:13:36

标签: ssl tcp glib libnice

我有工作代码,其中两个对等端通过中继服务器连接(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的新手。所以,我可能会遗漏一些基本的东西。

1 个答案:

答案 0 :(得分:1)

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