X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=doc%2Fhtml%2Fboost_asio%2Freference%2Fbasic_raw_socket%2Fget_option%2Foverload1.html;h=8d1fd821ffdf1d3127c83a2e5ea0e9ae2f8180e7;hb=08c1e93fa36a49f49325a07fe91ff92c964c2b6c;hp=551e1da724ff716a5b749ce371ff50d8e30fdf41;hpb=bb4dd8289b351fae6b55e303f189127a394a1edd;p=platform%2Fupstream%2Fboost.git diff --git a/doc/html/boost_asio/reference/basic_raw_socket/get_option/overload1.html b/doc/html/boost_asio/reference/basic_raw_socket/get_option/overload1.html index 551e1da..8d1fd82 100644 --- a/doc/html/boost_asio/reference/basic_raw_socket/get_option/overload1.html +++ b/doc/html/boost_asio/reference/basic_raw_socket/get_option/overload1.html @@ -3,7 +3,7 @@ basic_raw_socket::get_option (1 of 2 overloads) - + @@ -43,11 +43,11 @@

- Parameters + Parameters

-
+
option

The option value to be obtained from the socket. @@ -56,11 +56,11 @@

- Exceptions + Exceptions

-
+
boost::system::system_error

Thrown on failure. @@ -69,7 +69,7 @@

- Example + Example

Getting the value of the SOL_SOCKET/SO_KEEPALIVE option: @@ -78,12 +78,12 @@ ... boost::asio::ip::tcp::socket::keep_alive option; socket.get_option(option); -bool is_set = option.get(); +bool is_set = option.value(); -