我用openpgm编译了libzmq,在windows下没有任何变化。此处的代码取自ZeroMQ Guide("天气发布商"服务器/客户端)。但如果我改变" tcp" to" 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可以按预期工作。
我已经尝试过&#34; route print 0.0.0.0&#34;使用cmd.exe并使用接口IP(192.168.137.64)作为前缀而不是&#34; eth0&#34;如在RFC:epgm://192.168.137.64; 127.0.0.1:5556中显示连接和/或绑定,但这会破坏我的套接字并引发错误。
另外&#34; PGM&#34;需要管理员权限,我现在无法测试。
错误不是&#34;协议不受支持&#34; 错误设置为B(11),我不明白它是什么意思(没有文档)
答案 0 :(得分:0)
EPGM有点挑剔。 According to this list post,如果您正在使用EPGM,则您的发布商和订阅者必须位于不同的主机上。 More details here,看起来这是ZMQ团队的慎重选择。
因此,请在不同的机器上旋转PUB和SUB(当然,相应地更改网络地址)来尝试。
答案 1 :(得分:0)
原因可能是windows不支持环回捕获接口。我试过天气示例,在linux上将协议更改为epgm并且它工作正常(好吧,显示有关环回的一些警告,但消息正确传输)