0

2 つのピアがリレー サーバー (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 は初めてです。だから、私は何か基本的なものを見逃しているかもしれません。

4

1 に答える 1

1

おそらくglib-networkingパッケージをインストールする必要があります。

于 2015-10-17T17:52:09.367 に答える