mirror of
https://github.com/boostorg/asio.git
synced 2026-01-28 06:42:08 +00:00
........ r43377 | chris_kohlhoff | 2008-02-23 09:43:54 +1100 (Sat, 23 Feb 2008) | 2 lines Use the correct vector of timer queues when dispatching timers. ........ r43437 | chris_kohlhoff | 2008-02-29 23:57:57 +1100 (Fri, 29 Feb 2008) | 2 lines Add missing tie(). ........ r43469 | chris_kohlhoff | 2008-03-04 00:21:05 +1100 (Tue, 04 Mar 2008) | 4 lines Disable use of CancelIo by default, due to the possibility of silent failure on some system configurations. Swallow error returned by CancelIoEx if there are no operations to be cancelled. ........ r43470 | chris_kohlhoff | 2008-03-04 00:27:06 +1100 (Tue, 04 Mar 2008) | 2 lines Add missing 'boost_' prefix to helper namespace. ........ r43471 | chris_kohlhoff | 2008-03-04 00:36:35 +1100 (Tue, 04 Mar 2008) | 2 lines Regenerate documentation. ........ r43472 | chris_kohlhoff | 2008-03-04 01:05:35 +1100 (Tue, 04 Mar 2008) | 1 line Update copyright notices. ........ r43473 | chris_kohlhoff | 2008-03-04 01:13:01 +1100 (Tue, 04 Mar 2008) | 2 lines Update copyright notices. ........ r43569 | chris_kohlhoff | 2008-03-13 00:25:49 +1100 (Thu, 13 Mar 2008) | 4 lines Revert to having the windows-bug workaround (short timeout on GetQueuedCompletionStatus) on all threads as there are still scenarios where threads can get stuck indefinitely. ........ [SVN r43571]
144 lines
3.8 KiB
C++
144 lines
3.8 KiB
C++
//
|
|
// client.cpp
|
|
// ~~~~~~~~~~
|
|
//
|
|
// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <boost/bind.hpp>
|
|
#include <boost/asio.hpp>
|
|
#include <boost/asio/ssl.hpp>
|
|
|
|
enum { max_length = 1024 };
|
|
|
|
class client
|
|
{
|
|
public:
|
|
client(boost::asio::io_service& io_service, boost::asio::ssl::context& context,
|
|
boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
|
|
: socket_(io_service, context)
|
|
{
|
|
boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
|
|
socket_.lowest_layer().async_connect(endpoint,
|
|
boost::bind(&client::handle_connect, this,
|
|
boost::asio::placeholders::error, ++endpoint_iterator));
|
|
}
|
|
|
|
void handle_connect(const boost::system::error_code& error,
|
|
boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
|
|
{
|
|
if (!error)
|
|
{
|
|
socket_.async_handshake(boost::asio::ssl::stream_base::client,
|
|
boost::bind(&client::handle_handshake, this,
|
|
boost::asio::placeholders::error));
|
|
}
|
|
else if (endpoint_iterator != boost::asio::ip::tcp::resolver::iterator())
|
|
{
|
|
socket_.lowest_layer().close();
|
|
boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
|
|
socket_.lowest_layer().async_connect(endpoint,
|
|
boost::bind(&client::handle_connect, this,
|
|
boost::asio::placeholders::error, ++endpoint_iterator));
|
|
}
|
|
else
|
|
{
|
|
std::cout << "Connect failed: " << error << "\n";
|
|
}
|
|
}
|
|
|
|
void handle_handshake(const boost::system::error_code& error)
|
|
{
|
|
if (!error)
|
|
{
|
|
std::cout << "Enter message: ";
|
|
std::cin.getline(request_, max_length);
|
|
size_t request_length = strlen(request_);
|
|
|
|
boost::asio::async_write(socket_,
|
|
boost::asio::buffer(request_, request_length),
|
|
boost::bind(&client::handle_write, this,
|
|
boost::asio::placeholders::error,
|
|
boost::asio::placeholders::bytes_transferred));
|
|
}
|
|
else
|
|
{
|
|
std::cout << "Handshake failed: " << error << "\n";
|
|
}
|
|
}
|
|
|
|
void handle_write(const boost::system::error_code& error,
|
|
size_t bytes_transferred)
|
|
{
|
|
if (!error)
|
|
{
|
|
boost::asio::async_read(socket_,
|
|
boost::asio::buffer(reply_, bytes_transferred),
|
|
boost::bind(&client::handle_read, this,
|
|
boost::asio::placeholders::error,
|
|
boost::asio::placeholders::bytes_transferred));
|
|
}
|
|
else
|
|
{
|
|
std::cout << "Write failed: " << error << "\n";
|
|
}
|
|
}
|
|
|
|
void handle_read(const boost::system::error_code& error,
|
|
size_t bytes_transferred)
|
|
{
|
|
if (!error)
|
|
{
|
|
std::cout << "Reply: ";
|
|
std::cout.write(reply_, bytes_transferred);
|
|
std::cout << "\n";
|
|
}
|
|
else
|
|
{
|
|
std::cout << "Read failed: " << error << "\n";
|
|
}
|
|
}
|
|
|
|
private:
|
|
boost::asio::ssl::stream<boost::asio::ip::tcp::socket> socket_;
|
|
char request_[max_length];
|
|
char reply_[max_length];
|
|
};
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
try
|
|
{
|
|
if (argc != 3)
|
|
{
|
|
std::cerr << "Usage: client <host> <port>\n";
|
|
return 1;
|
|
}
|
|
|
|
boost::asio::io_service io_service;
|
|
|
|
boost::asio::ip::tcp::resolver resolver(io_service);
|
|
boost::asio::ip::tcp::resolver::query query(argv[1], argv[2]);
|
|
boost::asio::ip::tcp::resolver::iterator iterator = resolver.resolve(query);
|
|
|
|
boost::asio::ssl::context ctx(io_service, boost::asio::ssl::context::sslv23);
|
|
ctx.set_verify_mode(boost::asio::ssl::context::verify_peer);
|
|
ctx.load_verify_file("ca.pem");
|
|
|
|
client c(io_service, ctx, iterator);
|
|
|
|
io_service.run();
|
|
}
|
|
catch (std::exception& e)
|
|
{
|
|
std::cerr << "Exception: " << e.what() << "\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|