From 918124fb0b2fdf05bf98aee2c74c85387f1d8638 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 4 Feb 2018 23:38:08 +0000 Subject: Listen for server replies on different ports on main and batch, and get servers to send replies to both (#1190). --- src/lib/encode_server_finder.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib/encode_server_finder.cc') diff --git a/src/lib/encode_server_finder.cc b/src/lib/encode_server_finder.cc index 2796df8f5..267fbb62a 100644 --- a/src/lib/encode_server_finder.cc +++ b/src/lib/encode_server_finder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -157,7 +157,9 @@ try { using namespace boost::asio::ip; try { - _listen_acceptor.reset (new tcp::acceptor (_listen_io_service, tcp::endpoint (tcp::v4(), SERVER_PRESENCE_PORT))); + _listen_acceptor.reset ( + new tcp::acceptor (_listen_io_service, tcp::endpoint (tcp::v4(), is_batch_converter ? BATCH_SERVER_PRESENCE_PORT : MAIN_SERVER_PRESENCE_PORT)) + ); } catch (...) { boost::throw_exception (NetworkError (_("Could not listen for remote encode servers. Perhaps another instance of DCP-o-matic is running."))); } -- cgit v1.2.3