@@ -72,9 +72,9 @@ if (parser->upgrade) {
72
72
}
73
73
```
74
74
75
- HTTP needs to know where the end of the stream is. For example, sometimes
75
+ ` http_parser ` needs to know where the end of the stream is. For example, sometimes
76
76
servers send responses without Content-Length and expect the client to
77
- consume input (for the body) until EOF. To tell http_parser about EOF, give
77
+ consume input (for the body) until EOF. To tell ` http_parser ` about EOF, give
78
78
` 0 ` as the fourth parameter to ` http_parser_execute() ` . Callbacks and errors
79
79
can still be encountered during an EOF, so one must still be prepared
80
80
to receive them.
@@ -93,7 +93,7 @@ the on_body callback.
93
93
The Special Problem of Upgrade
94
94
------------------------------
95
95
96
- HTTP supports upgrading the connection to a different protocol. An
96
+ ` http_parser ` supports upgrading the connection to a different protocol. An
97
97
increasingly common example of this is the WebSocket protocol which sends
98
98
a request like
99
99
@@ -144,7 +144,7 @@ parse a request, and then give a response over that socket. By instantiation
144
144
of a thread-local struct containing relevant data (e.g. accepted socket,
145
145
allocated memory for callbacks to write into, etc), a parser's callbacks are
146
146
able to communicate data between the scope of the thread and the scope of the
147
- callback in a threadsafe manner. This allows http-parser to be used in
147
+ callback in a threadsafe manner. This allows ` http_parser ` to be used in
148
148
multi-threaded contexts.
149
149
150
150
Example:
@@ -202,7 +202,7 @@ void http_parser_thread(socket_t sock) {
202
202
203
203
In case you parse HTTP message in chunks (i.e. `read()` request line
204
204
from socket, parse, read half headers, parse, etc) your data callbacks
205
- may be called more than once. Http-parser guarantees that data pointer is only
205
+ may be called more than once. `http_parser` guarantees that data pointer is only
206
206
valid for the lifetime of callback. You can also `read()` into a heap allocated
207
207
buffer to avoid copying memory around if this fits your application.
208
208
0 commit comments