commit | 317b58a3a9cdc1a5cff1ca33b95271ca62e7f1f4 | [log] [tgz] |
---|---|---|
author | Natalie Weizenbaum <nweiz@google.com> | Wed Dec 14 17:15:34 2016 -0800 |
committer | GitHub <noreply@github.com> | Wed Dec 14 17:15:34 2016 -0800 |
tree | 5ecd60b31210f8d5b0c7bb74786164326d1acb30 | |
parent | 50e55f63f4b9265bfa65cafb642cc7ba27b0eeca [diff] |
Fix chunkedCoding. (#9) I misread the spec; it turns out there's a CR LF sequence after the body bytes as well as after the size header.
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.