From 4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 27 Jul 2021 11:33:49 -0400 Subject: Remove link title attributes thats just the href es (#1737) * remove link 'title' attributes that's just the 'href' (es) * a couple more --- files/es/web/api/websockets_api/index.html | 8 ++++---- .../web/api/websockets_api/writing_websocket_server/index.html | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'files/es/web/api/websockets_api') diff --git a/files/es/web/api/websockets_api/index.html b/files/es/web/api/websockets_api/index.html index f4ce5224fc..c934dd7612 100644 --- a/files/es/web/api/websockets_api/index.html +++ b/files/es/web/api/websockets_api/index.html @@ -22,10 +22,10 @@ translation_of: Web/API/WebSockets_API

Herramientas

@@ -167,4 +167,4 @@ translation_of: Web/API/WebSockets_API

Starting in Gecko 11.0, the WebSocket API is no longer prefixed.

-
Warning: Among other things, a key reason WebSockets was disabled by default in Firefox 4 and 5 is the discovery of a security issue in the protocol's design. This was fixed in Firefox 6 by implementing a newer version of the protocol that corrects the problem.
+
Warning: Among other things, a key reason WebSockets was disabled by default in Firefox 4 and 5 is the discovery of a security issue in the protocol's design. This was fixed in Firefox 6 by implementing a newer version of the protocol that corrects the problem.
diff --git a/files/es/web/api/websockets_api/writing_websocket_server/index.html b/files/es/web/api/websockets_api/writing_websocket_server/index.html index 3e6fb1982e..1e3e1a06b3 100644 --- a/files/es/web/api/websockets_api/writing_websocket_server/index.html +++ b/files/es/web/api/websockets_api/writing_websocket_server/index.html @@ -12,11 +12,11 @@ original_slug: Web/API/WebSockets_API/Escribiendo_servidor_WebSocket

Si deseas utilizar la API WebSocket, es conveniente si tienes un servidor. En este artículo te mostraré como puedes escribir uno en C#. Tú puedes hacer esto en cualquier lenguaje del lado del servidor, pero para mantener las cosas simples y más comprensibles, elegí el lenguaje de Microsoft.

-

Este servidor se ajusta a RFC 6455 por lo que solo manejará las conexiones de Chrome version 16, Firefox 11, IE 10 and superiores.

+

Este servidor se ajusta a RFC 6455 por lo que solo manejará las conexiones de Chrome version 16, Firefox 11, IE 10 and superiores.

Primeros pasos

-

WebSocket se comunica a través de conexiones TCP (Transmission Control Protocol), afortunadamente C# tiene una clase TcpListener la cual hace lo que su nombre sugiere. Esta se encuentra en el namespace System.Net.Sockets.

+

WebSocket se comunica a través de conexiones TCP (Transmission Control Protocol), afortunadamente C# tiene una clase TcpListener la cual hace lo que su nombre sugiere. Esta se encuentra en el namespace System.Net.Sockets.

Es una buena idea usar la instrucción using para escribir menos. Eso significa que no tendrás que re escribir el namespace de nuevo en cada ocasión.

@@ -38,7 +38,7 @@ original_slug: Web/API/WebSockets_API/Escribiendo_servidor_WebSocket @@ -67,7 +67,7 @@ class Server {

Métodos:

@@ -208,7 +208,7 @@ if (Regex.IsMatch(data, "^GET")) {

FIN: Puedes enviar tu mensaje en marcos, pero ahora debe mantener las cosas simples.
- Opcode 0x1 significa que es un texto. Lista completa de Opcodes

+ Opcode 0x1 significa que es un texto. Lista completa de Opcodes

- 131:

-- cgit v1.2.3-54-g00ecf