diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-04-27 15:07:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-27 15:07:21 +0100 |
| commit | f80e2f7b370c3a6dfa8a78c9665a8eaf43a05f03 (patch) | |
| tree | a71e6e42c93fec31b12226a404bc87a50cf51422 /src/lib/dcp_video.cc | |
| parent | 89a4ad5f9d430e29758e5cca82a66ff3b6f11ea7 (diff) | |
Move ports around to allow master/server to coexist (#962).
Diffstat (limited to 'src/lib/dcp_video.cc')
| -rw-r--r-- | src/lib/dcp_video.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_video.cc b/src/lib/dcp_video.cc index ba8057be0..916563b85 100644 --- a/src/lib/dcp_video.cc +++ b/src/lib/dcp_video.cc @@ -156,7 +156,7 @@ DCPVideo::encode_remotely (EncodeServerDescription serv, int timeout) { boost::asio::io_service io_service; boost::asio::ip::tcp::resolver resolver (io_service); - boost::asio::ip::tcp::resolver::query query (serv.host_name(), raw_convert<string> (Config::instance()->server_port_base ())); + boost::asio::ip::tcp::resolver::query query (serv.host_name(), raw_convert<string> (ENCODE_FRAME_PORT)); boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query); shared_ptr<Socket> socket (new Socket (timeout)); |
