1<html> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 4<title>websocket::stream::handshake (4 of 4 overloads)</title> 5<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> 6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> 7<link rel="home" href="../../../../index.html" title="Chapter 1. Boost.Beast"> 8<link rel="up" href="../handshake.html" title="websocket::stream::handshake"> 9<link rel="prev" href="overload3.html" title="websocket::stream::handshake (3 of 4 overloads)"> 10<link rel="next" href="../async_handshake.html" title="websocket::stream::async_handshake"> 11</head> 12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> 13<table cellpadding="2" width="100%"><tr> 14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td> 15<td align="center"><a href="../../../../../../../../index.html">Home</a></td> 16<td align="center"><a href="../../../../../../../../libs/libraries.htm">Libraries</a></td> 17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> 18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> 19<td align="center"><a href="../../../../../../../../more/index.htm">More</a></td> 20</tr></table> 21<hr> 22<div class="spirit-nav"> 23<a accesskey="p" href="overload3.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../handshake.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../async_handshake.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> 24</div> 25<div class="section"> 26<div class="titlepage"><div><div><h6 class="title"> 27<a name="beast.ref.boost__beast__websocket__stream.handshake.overload4"></a><a class="link" href="overload4.html" title="websocket::stream::handshake (4 of 4 overloads)">websocket::stream::handshake 28 (4 of 4 overloads)</a> 29</h6></div></div></div> 30<p> 31 Perform the WebSocket handshake in the client role. 32 </p> 33<h7><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.h0"></a> 34 <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.synopsis"></a></span><a class="link" href="overload4.html#beast.ref.boost__beast__websocket__stream.handshake.overload4.synopsis">Synopsis</a> 35 </h7><pre class="programlisting"><span class="keyword">void</span> 36<span class="identifier">handshake</span><span class="special">(</span> 37 <span class="identifier">response_type</span><span class="special">&</span> <span class="identifier">res</span><span class="special">,</span> 38 <span class="identifier">string_view</span> <span class="identifier">host</span><span class="special">,</span> 39 <span class="identifier">string_view</span> <span class="identifier">target</span><span class="special">,</span> 40 <span class="identifier">error_code</span><span class="special">&</span> <span class="identifier">ec</span><span class="special">);</span> 41</pre> 42<h7><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.h1"></a> 43 <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.description"></a></span><a class="link" href="overload4.html#beast.ref.boost__beast__websocket__stream.handshake.overload4.description">Description</a> 44 </h7><p> 45 This function is used to perform the <a href="https://en.wikipedia.org/wiki/WebSocket#Protocol_handshake" target="_top">WebSocket 46 handshake</a>, required before messages can be sent and received. 47 During the handshake, the client sends the Websocket Upgrade HTTP request, 48 and the server replies with an HTTP response indicating the result of 49 the handshake. The call blocks until one of the following conditions 50 is true: 51 </p> 52<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> 53<li class="listitem"> 54 The request is sent and the response is received. 55 </li> 56<li class="listitem"> 57 An error occurs. 58 </li> 59</ul></div> 60<p> 61 The algorithm, known as a <span class="emphasis"><em>composed operation</em></span>, is 62 implemented in terms of calls to the next layer's <code class="computeroutput"><span class="identifier">read_some</span></code> 63 and <code class="computeroutput"><span class="identifier">write_some</span></code> functions. 64 The handshake is successful if the received HTTP response indicates the 65 upgrade was accepted by the server, represented by a <a href="https://tools.ietf.org/html/rfc7230#section-3.1.2" target="_top">status-code</a> 66 of <a class="link" href="../../boost__beast__http__status.html" title="http::status"><code class="computeroutput"><span class="identifier">beast</span><span class="special">::</span><span class="identifier">http</span><span class="special">::</span><span class="identifier">status</span><span class="special">::</span><span class="identifier">switching_protocols</span></code></a>. 67 </p> 68<h7><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.h2"></a> 69 <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.parameters"></a></span><a class="link" href="overload4.html#beast.ref.boost__beast__websocket__stream.handshake.overload4.parameters">Parameters</a> 70 </h7><div class="informaltable"><table class="table"> 71<colgroup> 72<col> 73<col> 74</colgroup> 75<thead><tr> 76<th> 77 <p> 78 Name 79 </p> 80 </th> 81<th> 82 <p> 83 Description 84 </p> 85 </th> 86</tr></thead> 87<tbody> 88<tr> 89<td> 90 <p> 91 <code class="computeroutput"><span class="identifier">res</span></code> 92 </p> 93 </td> 94<td> 95 <p> 96 The HTTP Upgrade response returned by the remote endpoint. 97 The caller may use the response to access any additional information 98 sent by the server. 99 </p> 100 </td> 101</tr> 102<tr> 103<td> 104 <p> 105 <code class="computeroutput"><span class="identifier">host</span></code> 106 </p> 107 </td> 108<td> 109 <p> 110 The name of the remote host. This is required by the HTTP protocol 111 to set the "Host" header field. 112 </p> 113 </td> 114</tr> 115<tr> 116<td> 117 <p> 118 <code class="computeroutput"><span class="identifier">target</span></code> 119 </p> 120 </td> 121<td> 122 <p> 123 The request-target, in origin-form. The server may use the 124 target to distinguish different services on the same listening 125 port. 126 </p> 127 </td> 128</tr> 129<tr> 130<td> 131 <p> 132 <code class="computeroutput"><span class="identifier">ec</span></code> 133 </p> 134 </td> 135<td> 136 <p> 137 Set to indicate what error occurred, if any. 138 </p> 139 </td> 140</tr> 141</tbody> 142</table></div> 143<h7><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.h3"></a> 144 <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.example"></a></span><a class="link" href="overload4.html#beast.ref.boost__beast__websocket__stream.handshake.overload4.example">Example</a> 145 </h7><pre class="programlisting"><span class="identifier">error_code</span> <span class="identifier">ec</span><span class="special">;</span> 146<span class="identifier">response_type</span> <span class="identifier">res</span><span class="special">;</span> 147<span class="identifier">ws</span><span class="special">.</span><span class="identifier">handshake</span><span class="special">(</span><span class="identifier">res</span><span class="special">,</span> <span class="string">"localhost"</span><span class="special">,</span> <span class="string">"/"</span><span class="special">,</span> <span class="identifier">ec</span><span class="special">);</span> 148<span class="keyword">if</span><span class="special">(!</span> <span class="identifier">ec</span><span class="special">)</span> 149 <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special"><<</span> <span class="identifier">res</span><span class="special">;</span> 150</pre> 151<h7><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.h4"></a> 152 <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.handshake.overload4.see_also"></a></span><a class="link" href="overload4.html#beast.ref.boost__beast__websocket__stream.handshake.overload4.see_also">See 153 Also</a> 154 </h7><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> 155<li class="listitem"> 156 <a href="https://tools.ietf.org/html/rfc6455#section-4.1" target="_top">Websocket 157 Opening Handshake Client Requirements (RFC6455)</a> 158 </li> 159<li class="listitem"> 160 <a href="https://tools.ietf.org/html/rfc7230#section-5.4" target="_top">Host 161 field (RFC7230)</a> 162 </li> 163<li class="listitem"> 164 <a href="https://tools.ietf.org/html/rfc7230#section-3.1.1" target="_top">request-target 165 (RFC7230)</a> 166 </li> 167<li class="listitem"> 168 <a href="https://tools.ietf.org/html/rfc7230#section-5.3.1" target="_top">origin-form 169 (RFC7230)</a> 170 </li> 171</ul></div> 172</div> 173<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> 174<td align="left"></td> 175<td align="right"><div class="copyright-footer">Copyright © 2016-2019 Vinnie 176 Falco<p> 177 Distributed under the Boost Software License, Version 1.0. (See accompanying 178 file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) 179 </p> 180</div></td> 181</tr></table> 182<hr> 183<div class="spirit-nav"> 184<a accesskey="p" href="overload3.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../handshake.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../async_handshake.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> 185</div> 186</body> 187</html> 188