Skip to content

Commit 23c924a

Browse files
author
Patrik Fiedler
committed
fix indendation
1 parent 0898d5c commit 23c924a

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

Release/include/cpprest/http_client.h

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -312,31 +312,31 @@ class http_client_config
312312
}
313313
#endif
314314

315-
/// <summary>
316-
/// Sets a callback to enable custom setting of platform specific options.
317-
/// </summary>
318-
/// <remarks>
319-
/// The native_handle is the following type depending on the underlying platform:
320-
/// Windows Desktop, WinHTTP - HINTERNET
321-
/// Windows Runtime, WinRT - IXMLHTTPRequest2 *
322-
/// All other platforms, Boost.Asio:
323-
/// https - boost::asio::ssl::stream<boost::asio::ip::tcp::socket &> *
324-
/// http - boost::asio::ip::tcp::socket *
325-
/// </remarks>
326-
/// <param name="callback">A user callback allowing for customization of the session</param>
327-
void set_nativesessionhandle_options(const std::function<void(native_handle)> &callback)
328-
{
329-
m_set_user_nativesessionhandle_options = callback;
330-
}
331-
332-
/// <summary>
333-
/// Invokes a user's callback to allow for customization of the session.
334-
/// </summary>
335-
/// <param name="handle">A internal implementation handle.</param>
336-
void invoke_nativesessionhandle_options(native_handle handle) const
337-
{
338-
m_set_user_nativesessionhandle_options(handle);
339-
}
315+
/// <summary>
316+
/// Sets a callback to enable custom setting of platform specific options.
317+
/// </summary>
318+
/// <remarks>
319+
/// The native_handle is the following type depending on the underlying platform:
320+
/// Windows Desktop, WinHTTP - HINTERNET
321+
/// Windows Runtime, WinRT - IXMLHTTPRequest2 *
322+
/// All other platforms, Boost.Asio:
323+
/// https - boost::asio::ssl::stream<boost::asio::ip::tcp::socket &> *
324+
/// http - boost::asio::ip::tcp::socket *
325+
/// </remarks>
326+
/// <param name="callback">A user callback allowing for customization of the session</param>
327+
void set_nativesessionhandle_options(const std::function<void(native_handle)> &callback)
328+
{
329+
m_set_user_nativesessionhandle_options = callback;
330+
}
331+
332+
/// <summary>
333+
/// Invokes a user's callback to allow for customization of the session.
334+
/// </summary>
335+
/// <param name="handle">A internal implementation handle.</param>
336+
void invoke_nativesessionhandle_options(native_handle handle) const
337+
{
338+
m_set_user_nativesessionhandle_options(handle);
339+
}
340340

341341

342342
/// <summary>

0 commit comments

Comments
 (0)