From 56b9cd14cb00a589bad631f7c80e7754f22320d4 Mon Sep 17 00:00:00 2001 From: Evelyn Date: Fri, 22 Jul 2016 16:07:44 +0100 Subject: [PATCH] Update mg_send_websocket_handshake.md --- docs/c-api/http.h/mg_send_websocket_handshake.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/c-api/http.h/mg_send_websocket_handshake.md b/docs/c-api/http.h/mg_send_websocket_handshake.md index 20ee7017..124807a4 100644 --- a/docs/c-api/http.h/mg_send_websocket_handshake.md +++ b/docs/c-api/http.h/mg_send_websocket_handshake.md @@ -7,14 +7,14 @@ signature: | const char *extra_headers); --- -Send websocket handshake to the server. +Sends WebSocket handshake to the server. `nc` must be a valid connection, connected to a server. `uri` is an URI -to fetch, extra_headers` is extra HTTP headers to send or `NULL`. +to fetch, `extra_headers` are extra HTTP headers to send or `NULL`. -This function is intended to be used by websocket client. +This function is intended to be used by the WebSocket client. -Note that the Host header is mandatory in HTTP/1.1 and must be +Note that the host header is mandatory in HTTP/1.1 and must be included in `extra_headers`. `mg_send_websocket_handshake2` offers a better API for that.