web-dev-qa-db-ja.com

boost :: asio :: ip :: tcp :: socketのIPアドレスを取得する方法は?

Boost ASIOライブラリを使用してC++でサーバーを作成しています。サーバーのログに表示されるクライアントIPの文字列表現を取得したいと思います。誰もそれを行う方法を知っていますか?

55
kyku

ソケットには、リモートエンドポイントを取得する機能があります。この(長い)コマンドチェーンを試してみましょう。リモートエンドIPアドレスの文字列表現を取得する必要があります。

asio::ip::tcp::socket socket(io_service);
// Do all your accepting and other stuff here.

asio::ip::tcp::endpoint remote_ep = socket.remote_endpoint();
asio::ip::address remote_ad = remote_ep.address();
std::string s = remote_ad.to_string();

またはワンライナー版:

asio::ip::tcp::socket socket(io_service);
// Do all your accepting and other stuff here.

std::string s = socket.remote_endpoint().address().to_string();
75
paxdiablo

または、boost::lexical_cast

#include <boost/lexical_cast.hpp>

std::string s = boost::lexical_cast<std::string>(socket.remote_endpoint());
23
marton78