blob: f8923fc47348277fed3812535ed890d875a95edd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#include <iostream>
#include <string>
#include <sstream>
#include <stdio.h>
#include <unistd.h>
#include <nanomsg/nn.h>
#include <nanomsg/pair.h>
#include "nn.hpp"
using namespace std;
void
recv(nn::socket& sock)
{
char *buf = NULL;
size_t sz = sock.recv(&buf, NN_MSG, 0);
if (buf) {
string translation(buf, buf+sz);
cout << "got translation '" << translation << "'" << endl << endl;
}
}
void
send(nn::socket& sock, const string& msg)
{
cout << "sending source '" << msg << "'" << endl;
sock.send(msg.c_str(), msg.size()+1, 0);
}
void
loop(nn::socket& sock)
{
int to = 100;
sock.setsockopt(NN_SOL_SOCKET, NN_RCVTIMEO, &to, sizeof(to));
for (string line; getline(cin, line);) {
send(sock, line);
sleep(1);
recv(sock);
}
}
int main(int argc, char const* argv[])
{
nn::socket sock(AF_SP, NN_PAIR);
//string url = "ipc:///tmp/network_decoder.ipc";
string url = "tcp://127.0.0.1:60666";
sock.connect(url.c_str());
loop(sock);
return 0;
}
|