aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/http/status/101/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/http/status/101/index.md')
-rw-r--r--files/fr/web/http/status/101/index.md33
1 files changed, 16 insertions, 17 deletions
diff --git a/files/fr/web/http/status/101/index.md b/files/fr/web/http/status/101/index.md
index 4f74b22e22..133e3748ae 100644
--- a/files/fr/web/http/status/101/index.md
+++ b/files/fr/web/http/status/101/index.md
@@ -1,40 +1,39 @@
---
title: 101 Switching Protocol
slug: Web/HTTP/Status/101
-tags:
- - Code de statut
- - HTTP
- - Informatif
- - Reference
- - WebSockets
translation_of: Web/HTTP/Status/101
---
{{HTTPSidebar}}
-Le code de réponse HTTP **`101 Switching Protocol`** indique que le protocole a changé, comme demandé par le client via l'en-tête {{HTTPHeader("Upgrade")}}.
+Le code de réponse HTTP **`101 Switching Protocol`** indique le protocole sur lequel le serveur a basculé, comme demandé par le client via l'en-tête de requête [`Upgrade`](/fr/docs/Web/HTTP/Headers/Upgrade).
-Le serveur envoie alors une réponse avec un en-tête {{HTTPHeader("Upgrade")}} qui indique le nouveau protocole utilisé.
+Le serveur envoie alors une réponse avec un en-tête de réponse [`Upgrade`](/fr/docs/Web/HTTP/Headers/Upgrade) qui indique le nouveau protocole utilisé. Ce processus est décrit dans l'article [Mécanisme de mise à jour du protocole](/fr/docs/Web/HTTP/Protocol_upgrade_mechanism).
## Statut
- 101 Switching Protocol
+```
+101 Switching Protocol
+```
## Exemples
-Les changements de protocole peuvent être utilisés avec [WebSockets](/fr/docs/WebSockets).
+Les changements de protocole peuvent être utilisés avec [WebSockets](/fr/docs/Web/API/WebSockets_API).
- HTTP/1.1 101 Switching Protocols
- Upgrade: websocket
- Connection: Upgrade
+```
+HTTP/1.1 101 Switching Protocols
+Upgrade: websocket
+Connection: Upgrade
+```
## Spécifications
| Spécification | Titre |
| -------------------------------------------------------------------- | ------------------------------------------------------------- |
-| {{RFC("7231", "101 Switching Protocol" , "6.2.2")}} | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
+| [RFC 7231, section 6.2.2: 101 Switching Protocol](https://datatracker.ietf.org/doc/html/rfc7231#section-6.2.2) | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
## Voir aussi
-- [WebSockets](/fr/docs/WebSockets)
-- {{HTTPHeader("Upgrade")}}
-- {{HTTPStatus("426")}}` Upgrade Required`
+- [Mécanisme de mise à jour du protocole](/fr/docs/Web/HTTP/Protocol_upgrade_mechanism)
+- [WebSockets](/fr/docs/Web/API/WebSockets_API)
+- [`Upgrade`](/fr/docs/Web/HTTP/Headers/Upgrade)
+- [`426 Upgrade Required`](/fr/docs/Web/HTTP/Status/426) \ No newline at end of file