使用tcp://获取带有epgm://的消息。为什么?

时间:2017-10-18 22:38:18

标签: c zeromq pgm-protocol

我尝试使用ZeroMQ指南中的天气示例,其中包含 epgm:// 传输类。起初我的代码是:

// Publisher

#include "zhelpers.h"

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

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

        //  Send a message to all subscribers
        char update [20];
        sprintf ( update, "%05d %d %d", zipcode, temperature, relhumidity );
        s_send ( publisher, update );
    }
    zmq_close ( publisher );
    zmq_ctx_destroy ( context );
    return 0;
}
    // Subscriber
    #include "zhelpers.h"

    int main ( int argc, char *argv [] )
    {
        //  Socket to talk to server
        printf ( "Collecting updates from weather server…\n" );
        void *context = zmq_ctx_new ();
        void *subscriber = zmq_socket ( context, ZMQ_SUB );
        // int rc = zmq_connect ( subscriber, "tcp://192.168.1.4:5556" );
           int rc = zmq_connect ( subscriber, "epgm://192.168.1.9;224.0.0.251:5556" );
        assert ( rc == 0 );

        //  Subscribe to zipcode, default is NYC, 10001
        char *filter = ( argc > 1 )? argv [1]: "10001 ";
        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 < 100; update_nbr++ ) {
            char *string = s_recv ( subscriber );

            int zipcode, temperature, relhumidity;
            sscanf ( string, "%d %d %d",
                    &zipcode, &temperature, &relhumidity );
            total_temp += temperature;
            free ( string );
        }
        printf ( "Average temperature for zipcode '%s' was %dF\n",
            filter, (int) ( total_temp / update_nbr ) );

        zmq_close ( subscriber );
        zmq_ctx_destroy ( context );
        return 0;
    }
  1. 我在同一台主机上使用tcp://尝试了此代码(请参阅注释)并且工作正常。
  2. 我尝试使用此示例Openbook Linux(带有我的多播地址)的多播地址,然后收到了消息。
  3. 我使用 pgm:// 安装了ZeroMQ(在我收到断言之前)。
  4. 我的主机都是Ubuntu 16.04系统
  5. 我正在使用ZeroMQ 4
  6. 我的问题是我没有收到epgm://的任何消息。两个程序都在运行,但没有收到任何消息。我错过了什么?我不明白什么是错的。

1 个答案:

答案 0 :(得分:0)

对于问题的后来访问者,代码很好并且正在运行。要查看它是否适用于您的系统,请将for循环更改为一个循环,并在10001上设置发布者的邮政编码,如果您在没有参数的情况下启动订阅者。