0

我已经用openpgm编译了libzmq,在windows下没有任何变化。此处的代码取自ZeroMQ 指南(“天气发布者”服务器/客户端)。但是,如果我将“tcp”更改为“epgm”,它将不再起作用(未收到数据,但已建立连接)。

void test_serv()
{    
    //  Prepare our context and publisher
    void *context = zmq_ctx_new();
    void *publisher = zmq_socket(context, ZMQ_PUB);
    int rc = zmq_bind(publisher, "epgm://127.0.0.1:5556");
    assert(rc == 0);

    //  Initialize random number generator
    srandom((unsigned)time(NULL));
    while (!stop_server)
    {
        //  Get values that will fool the boss
        int zipcode, temperature, relhumidity;
        zipcode = randof(1000) + 600;
        temperature = randof(215) - 80;
        relhumidity = randof(50) + 10;

        //  Send message to all subscribers
        char update[20];
        sprintf(update, "%d %d %d", zipcode, temperature, relhumidity);
        s_send(publisher, update);
    }
    LOG("END Server shutdown");
    Sleep(500);
    zmq_close(publisher);
    zmq_ctx_destroy(context);
}

void test_sock()
{    
    //  Socket to talk to server
    LOG("Collecting updates from weather server...");
    void *context = zmq_ctx_new();
    void *subscriber = zmq_socket(context, ZMQ_SUB);
    int rc = zmq_connect(subscriber, "epgm://127.0.0.1:5556");
    assert(rc == 0);

    //  Subscribe to zipcode, default is NYC, 10001
    char *filter = "1001 ";
    rc = zmq_setsockopt(subscriber, ZMQ_SUBSCRIBE,
        filter, strlen(filter));
    assert(rc == 0);

    //  Process 100 updates
    int update_nbr;
    long total_temp = 0;
    for (update_nbr = 0; update_nbr < 10; update_nbr++) {
        char *string = s_recv(subscriber);

        int zipcode, temperature, relhumidity;
        sscanf(string, "%d %d %d",
            &zipcode, &temperature, &relhumidity);
        total_temp += temperature;
        LOG(">> " << string);
        free(string);
    }
    LOG("Average temperature for zipcode "<< filter << "was " << (int)(total_temp / update_nbr) << 'F');

    zmq_close(subscriber);
    zmq_ctx_destroy(context);
}

我在不同的线程中运行两个函数,使用 tcp 一切都按预期工作。

我尝试使用 cmd.exe 执行“路由打印 0.0.0.0”,并使用接口 IP(192.168.137.64)作为前缀,而不是像 RFC 中所示的“eth0”:epgm://192.168.137.64;127.0.0.1:5556 on连接和/或绑定,但这会破坏我的套接字并引发错误。

“PGM”也需要管理员权限,我现在无法测试。

错误不是“不支持协议” errno 设置为 B (11),我不明白这是什么意思(上面没有文档)。

4

2 回答 2

0

EPGM 有点挑剔。 根据此列表帖子,如果您使用的是 EPGM,您的发布者和订阅者必须位于不同的主机上。更多细节在这里,看起来这是 ZMQ 团队的深思熟虑的选择。

因此,请尝试在不同的机器上启动您的 PUB 和 SUB(当然,相应地更改网络地址)。

于 2016-03-21T13:50:50.720 回答
0

原因可能是windows不支持环回捕获接口。我尝试了在 linux 上将协议更改为 epgm 的天气示例,它工作正常(嗯,显示了一些有关环回的警告,但消息传输正确)

于 2016-03-30T07:07:38.180 回答