C版本的nng库,可以和go版本的mangos通信
wangzhengquan
2020-06-16 65080866cccbb2e8c83bc87f0378e55b90003433
1
2
3
4
5
6
./test_survey server ipc:///tmp/test_survey.ipc & server=$!
./test_survey client ipc:///tmp/test_survey.ipc client0 & client0=$!
./test_survey client ipc:///tmp/test_survey.ipc client1 & client1=$!
./test_survey client ipc:///tmp/test_survey.ipc client2 & client2=$!
sleep 3 
kill $server $client0 $client1 $client2