aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/http/status/101/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/http/status/101/index.html')
-rw-r--r--files/fr/web/http/status/101/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/files/fr/web/http/status/101/index.html b/files/fr/web/http/status/101/index.html
new file mode 100644
index 0000000000..7f8aa0307e
--- /dev/null
+++ b/files/fr/web/http/status/101/index.html
@@ -0,0 +1,51 @@
+---
+title: 101 Switching Protocol
+slug: Web/HTTP/Status/101
+tags:
+ - Code de statut
+ - HTTP
+ - Informatif
+ - Reference
+ - WebSockets
+translation_of: Web/HTTP/Status/101
+---
+<div>{{HTTPSidebar}}</div>
+
+<p>Le code de réponse HTTP <code><strong>101 Switching Protocol</strong></code> indique que le protocole a changé, comme demandé par le client via l'en-tête {{HTTPHeader("Upgrade")}}.</p>
+
+<p>Le serveur envoie alors une réponse avec un en-tête {{HTTPHeader("Upgrade")}} qui indique le nouveau protocole utilisé.</p>
+
+<h2 id="Statut">Statut</h2>
+
+<pre class="syntaxbox">101 Switching Protocol</pre>
+
+<h2 id="Exemples">Exemples</h2>
+
+<p>Les changements de protocole peuvent être utilisés avec <a href="/fr/docs/WebSockets">WebSockets</a>.</p>
+
+<pre>HTTP/1.1 101 Switching Protocols
+Upgrade: websocket
+Connection: Upgrade</pre>
+
+<h2 id="Spécifications">Spécifications</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Spécification</th>
+ <th scope="col">Titre</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7231", "101 Switching Protocol" , "6.2.2")}}</td>
+ <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Voir_aussi">Voir aussi</h2>
+
+<ul>
+ <li><a href="/fr/docs/WebSockets">WebSockets</a></li>
+ <li>{{HTTPHeader("Upgrade")}}</li>
+ <li>{{HTTPStatus("426")}}<code> Upgrade Required</code></li>
+</ul>