1

谁能分享一个示例程序来查看如何使用 httplib_connect_client() :libhttp 库连接到我的主机服务器?

struct lh_con_t *httplib_connect_client( struct lh_ctx_t *ctx, const char *host, int port, int use_ssl )

请提供示例程序

添加我正在尝试的代码

#include <stdio.h>
#include <string.h>
#include "libhttp.h"
int main()
{
    int ret = 0;

    
    struct lh_con_t *newconn = NULL;
    struct lh_ctx_t *context = NULL;
    newconn = httplib_connect_client(context,"www.example.com", 8080, 1);
    if (newconn == NULL) {
        printf("Error: ");
        return 1;
    }


    return ret;
}

使用此代码,我无法建立与远程服务器的连接。

4

0 回答 0