Module solicit::http
[−]
[src]
The module implements the framing layer of HTTP/2 and exposes an API for using it.
Modules
client |
The module contains a number of reusable components for implementing the client side of an HTTP/2 connection. |
connection |
The module contains the implementation of an HTTP/2 connection. |
frame |
The module contains the implementation of HTTP/2 frames. |
priority |
The module exposes an API for defining data prioritization strategies. |
server |
The module contains a number of reusable components for implementing the server side of an HTTP/2 connection. |
session |
Defines the interface for the session-level management of HTTP/2 communication. This is effectively an API that allows hooking into an HTTP/2 connection in order to handle events arising on the connection. |
transport |
The module contains implementations of the transport layer functionality that HTTP/2 requires. It exposes APIs that allow the HTTP/2 connection to use the transport layer without requiring it to know which exact implementation they are using (e.g. a clear-text TCP connection, a TLS protected connection, or even a mock implementation). |
Structs
Request |
A struct representing a full HTTP/2 request, along with the full body, as a sequence of bytes. |
Response |
A struct representing the full raw response received on an HTTP/2 connection. |
Enums
HttpError |
An enum representing errors that can arise when performing operations involving an HTTP/2 connection. |
HttpScheme |
An enum representing the two possible HTTP schemes. |
Constants
ALPN_PROTOCOLS |
A set of protocol names that the library should use to indicate that HTTP/2 is supported during protocol negotiation (NPN or ALPN). We include some of the drafts' protocol names, since there is basically no difference for all intents and purposes (and some servers out there still only officially advertise draft support). TODO: Eventually only use "h2". |
Type Definitions
Header |
An alias for the type that represents HTTP/2 headers. For now we only alias the tuple of byte vectors instead of going with a full struct representation. |
HttpResult |
A convenience |
StreamId |
An alias for the type that represents the ID of an HTTP/2 stream |