mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-22 05:04:37 +02:00
Change address back to 50000
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user