C语言简单使用zmq

最近已经使用了很长一段时间的zmq了,主要用于进程间通信 或者 线程间通信。在空闲之余对zmq的使用进行简单的demo演示,供有需要 的老铁,快速上手进行项目开发,也便于日后自我回顾。

【server】

//server.c
/* 1. create context
 * 2. create socket
 * 3. bind
 * 4. recv */

#include <zmq.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
	void *pctx = NULL;
	void *psock = NULL;
	const char *paddr = "tcp://*:9999";

	if ((pctx = zmq_ctx_new()) == NULL) {
		printf("create pctx error!\n");
		return 0;
	}

	if ((psock = zmq_socket(pctx, ZMQ_DEALER)) == NULL) {
		zmq_ctx_destroy(pctx);
		printf("create socket error!\n");
		return 0;
	}

	int irevtimeout = 5000;//millsecond
	if (zmq_setsockopt(psock, ZMQ_RCVTIMEO, &irevtimeout, sizeof(irevtimeout)) < 0) {
		zmq_close(psock);
		zmq_ctx_destroy(pctx);
		printf("setsockopt error!\n");
		return 0;
	}

	if (zmq_bind(psock, paddr) < 0) {
		zmq_close(psock);
		zmq_ctx
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值