-1
boost::asio::ip::tcp::iostream stream;
stream.expires_from_now(boost::posix_time::seconds(60));
stream.connect("sitename","http");
    SOME REQUeST
stream.flush();

///////////////// New request to the different  site 


stream.connect("another site","http");
somthink here

stream.flush();

接続を閉じる必要があると思いますが、これを行う方法がわかりません。

4

1 に答える 1

0

ストリームオブジェクトのメンバー関数を探してい.close ()ます。ストリームを閉じた後、他の場所に自由に接続できます。

stream.close ();

ドキュメンテーション:

于 2012-07-15T12:11:51.597 に答える