aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/features/tcpproxy.rst2
-rw-r--r--docs/scripting/events.rst8
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/features/tcpproxy.rst b/docs/features/tcpproxy.rst
index 1d6fbd12..e24620e2 100644
--- a/docs/features/tcpproxy.rst
+++ b/docs/features/tcpproxy.rst
@@ -3,7 +3,7 @@
TCP Proxy
=========
-WebSockets or other non-HTTP protocols are not supported by mitmproxy yet. However, you can exempt
+Non-HTTP protocols are not supported by mitmproxy yet. However, you can exempt
hostnames from processing, so that mitmproxy acts as a generic TCP forwarder.
This feature is closely related to the :ref:`passthrough` functionality,
but differs in two important aspects:
diff --git a/docs/scripting/events.rst b/docs/scripting/events.rst
index 5f560e58..69b829a3 100644
--- a/docs/scripting/events.rst
+++ b/docs/scripting/events.rst
@@ -162,15 +162,15 @@ WebSocket Events
:widths: 40 60
:header-rows: 0
- * - .. py:function:: websockets_handshake(flow)
+ * - .. py:function:: websocket_handshake(flow)
- - Called when a client wants to establish a WebSockets connection. The
- WebSockets-specific headers can be manipulated to manipulate the
+ - Called when a client wants to establish a WebSocket connection. The
+ WebSocket-specific headers can be manipulated to manipulate the
handshake. The ``flow`` object is guaranteed to have a non-None
``request`` attribute.
*flow*
- The flow containing the HTTP websocket handshake request. The
+ The flow containing the HTTP WebSocket handshake request. The
object is guaranteed to have a non-None ``request`` attribute.