Change address back to 50000

This commit is contained in:
2020-04-22 11:56:14 +02:00
parent e588264dfc
commit 4e1fd36aa1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ int main (int argc, char *argv[]) {
auto socket = zmq_socket(ctx, ZMQ_PUSH);
//TODO: Use ipc?
if (zmq_connect(socket, "tcp://localhost:49000") != 0) {
if (zmq_connect(socket, "tcp://localhost:50000") != 0) {
throw runtime_error(strerror (errno));
}
+1 -1
View File
@@ -36,7 +36,7 @@ int main (int argc, char *argv[])
auto socket = zmq_socket(ctx, ZMQ_PULL);
//TODO: Use ipc?
if (zmq_bind(socket, "tcp://127.0.0.1:49000") != 0) {
if (zmq_bind(socket, "tcp://127.0.0.1:50000") != 0) {
throw runtime_error(strerror (errno));
}