diff options
| -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