我使用libstrophe版本0.8.9来开发我的xmpp客户端。

这是我的xmmp客户端连接到服务器的xmmp功能

#include <strophe.h>
    int xmpp_connect(void)
    {
        xmpp_ctx_t *ctx;
        xmpp_conn_t *conn;
        xmpp_log_t *log;
        int sta;
        static int retry = 0;

        xmpp_initialize();
        log = xmpp_get_default_logger(XMPP_LEVEL_DEBUG);
        ctx = xmpp_ctx_new(NULL, log);
        conn = xmpp_conn_new(ctx);
        xmpp_conn_set_jid(conn, cur_xmmp_con.jid);
        xmpp_conn_set_pass(conn, cur_xmmp_con.password);

    #if 1
        if (!tls_start(conn->tls))
        {
            xmpp_debug(conn->ctx, "xmpp", "Couldn't start TLS! error %d", tls_error(conn->tls));
            tls_free(conn->tls);
            conn->tls = NULL;
            conn->tls_failed = 1;
            /* failed tls spoils the connection, so disconnect */
            xmpp_disconnect(conn);
        }
        else
        {
            conn->secured = 1;
            conn_prepare_reset(conn, NULL);
            conn_open_stream(conn);
        }
    #endif
        //
        sta = xmpp_connect_client(conn, NULL, 0, conn_handler, ctx);
        xmpp_run(ctx);
        return 0;
    }


我得到这些错误

./src/test_xmpp.c:62:21: error: dereferencing pointer to incomplete type
  if (!tls_start(conn->tls))
                     ^
../src/test_xmpp.c:64:18: error: dereferencing pointer to incomplete type
   xmpp_debug(conn->ctx, "xmpp", "Couldn't start TLS! error %d", tls_error(conn->tls));
                  ^
../src/test_xmpp.c:64:79: error: dereferencing pointer to incomplete type
   xmpp_debug(conn->ctx, "xmpp", "Couldn't start TLS! error %d", tls_error(conn->tls));
                                                                               ^
../src/test_xmpp.c:65:16: error: dereferencing pointer to incomplete type
   tls_free(conn->tls);
                ^
../src/test_xmpp.c:66:7: error: dereferencing pointer to incomplete type
   conn->tls = NULL;
       ^
../src/test_xmpp.c:67:7: error: dereferencing pointer to incomplete type
   conn->tls_failed = 1;
       ^
../src/test_xmpp.c:73:7: error: dereferencing pointer to incomplete type
   conn->secured = 1;


尽管这些变量存在于此文件https://github.com/metajack/libstrophe/blob/master/src/common.h

我的代码或libstrophe有什么问题?

最佳答案

您只能使用strophe.h提供的API。同样,strophe.h不包含xmpp_conn_txmpp_ctx_t等的定义。因此,您不能在程序中访问它们的字段。

如果libstrophe是使用TLS支持构建的(默认情况下是openssl),则xmpp服务器支持TLS会话即会建立。这是隐式完成的。在conn_handler()中,可以检查是否使用xmpp_conn_is_secured()进行了安全连接。或者,您可以通过在xmpp_connect_client()之前调用下一个函数来仅接受安全连接:

    xmpp_conn_set_flags(conn, XMPP_CONN_FLAG_MANDATORY_TLS);


有关更多详细信息,请参见https://github.com/strophe/libstrophe/blob/master/examples/basic.c

最后,您需要删除#if-#endif部分。如果正确构建了libstrophe并且xmpp服务器支持它,则TLS会话将自动建立。

附言官方存储库已移至https://github.com/strophe/libstrophe

关于c - 为openwrt编译libstrophe以支持TLS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41964211/

10-11 21:06