commit | e562446dbd552734239e6f51e4d5859b6f24a46e | [log] [tgz] |
---|---|---|
author | Keerti Parthasarathy <keertip@google.com> | Mon Jul 31 10:33:36 2017 -0700 |
committer | Keerti Parthasarathy <keertip@google.com> | Mon Jul 31 10:33:50 2017 -0700 |
tree | 900b666dc2cc262d35320385a2ee90b4697cbe37 | |
parent | b41b5deeb8229b67625e7457d4a2a67a7e3ec933 [diff] |
Update comment style generic syntax BUG= R=nbosch@google.com Review-Url: https://codereview.chromium.org//2993483002 .
http_parser
is a platform-independent package for parsing and serializing various HTTP-related formats. It's designed to be usable on both the browser and the server, and thus avoids referencing any types from dart:io
or dart:html
. It includes:
Support for parsing and formatting dates according to HTTP/1.1, the HTTP/1.1 standard.
A MediaType
class that represents an HTTP media type, as used in Accept
and Content-Type
headers. This class supports both parsing and formatting media types according to HTTP/1.1.
A WebSocketChannel
class that provides a StreamChannel
interface for both the client and server sides of the WebSocket protocol independently of any specific server implementation.