diff options
| author | Edwin Mons <edwin.mons@isode.com> | 2018-11-09 09:27:58 (GMT) |
|---|---|---|
| committer | Edwin Mons <edwin.mons@isode.com> | 2018-11-13 15:52:08 (GMT) |
| commit | 961a997b406cc1283f316c88bb0475e35e7cc9aa (patch) | |
| tree | f55143849e0e649532aa23b564c6aa4f1ef68920 | |
| parent | 56384396e5501ebcf7276caa2cb561023d3c3d12 (diff) | |
| download | swift-961a997b406cc1283f316c88bb0475e35e7cc9aa.zip swift-961a997b406cc1283f316c88bb0475e35e7cc9aa.tar.bz2 | |
Update one forgotten port in BoostConnection
Test-Information:
Unit tests pass on Debian 9 and macOS 10.14
Change-Id: I7881249c68a294679a6a9d0f6bef65cad5034687
| -rw-r--r-- | Swiften/Network/BoostConnection.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Swiften/Network/BoostConnection.cpp b/Swiften/Network/BoostConnection.cpp index 0de7b25..551363d 100644 --- a/Swiften/Network/BoostConnection.cpp +++ b/Swiften/Network/BoostConnection.cpp | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (c) 2010-2016 Isode Limited. | 2 | * Copyright (c) 2010-2018 Isode Limited. |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * See the COPYING file for more information. | 4 | * See the COPYING file for more information. |
| 5 | */ | 5 | */ |
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <boost/asio/placeholders.hpp> | 14 | #include <boost/asio/placeholders.hpp> |
| 15 | #include <boost/asio/write.hpp> | 15 | #include <boost/asio/write.hpp> |
| 16 | #include <boost/bind.hpp> | 16 | #include <boost/bind.hpp> |
| 17 | #include <boost/numeric/conversion/cast.hpp> | ||
| 18 | 17 | ||
| 19 | #include <Swiften/Base/Algorithm.h> | 18 | #include <Swiften/Base/Algorithm.h> |
| 20 | #include <Swiften/Base/ByteArray.h> | 19 | #include <Swiften/Base/ByteArray.h> |
| @@ -64,7 +63,7 @@ void BoostConnection::listen() { | |||
| 64 | 63 | ||
| 65 | void BoostConnection::connect(const HostAddressPort& addressPort) { | 64 | void BoostConnection::connect(const HostAddressPort& addressPort) { |
| 66 | boost::asio::ip::tcp::endpoint endpoint( | 65 | boost::asio::ip::tcp::endpoint endpoint( |
| 67 | boost::asio::ip::address::from_string(addressPort.getAddress().toString()), boost::numeric_cast<unsigned short>(addressPort.getPort())); | 66 | boost::asio::ip::address::from_string(addressPort.getAddress().toString()), addressPort.getPort()); |
| 68 | socket_.async_connect( | 67 | socket_.async_connect( |
| 69 | endpoint, | 68 | endpoint, |
| 70 | boost::bind(&BoostConnection::handleConnectFinished, shared_from_this(), boost::asio::placeholders::error)); | 69 | boost::bind(&BoostConnection::handleConnectFinished, shared_from_this(), boost::asio::placeholders::error)); |
Swift