tag | 8a67c6e21329f96173fa3b31bc5ba5af3e8e9aa8 | |
---|---|---|
tagger | Natalie Weizenbaum <nweiz@google.com> | Wed Jul 15 23:03:27 2015 |
object | f1960fd1dc9fc5ca4d604ab2523fa360ccfefb11 |
Bring in the latest dart:io WebSocket code.
commit | f1960fd1dc9fc5ca4d604ab2523fa360ccfefb11 | [log] [tgz] |
---|---|---|
author | Natalie Weizenbaum <nweiz@google.com> | Wed Jul 15 23:02:44 2015 |
committer | Natalie Weizenbaum <nweiz@google.com> | Wed Jul 15 23:02:44 2015 |
tree | 915744ed8a159960abb05193e3f8581405dcf829 | |
parent | 89fb81567397ae18a44feb483d53179e5b1d8231 [diff] |
Bring in latest dart:io WebSocket code. This also moves various copies of dart:io code into their own subdirectory. R=kevmoo@google.com Review URL: https://codereview.chromium.org//1225403008 .
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 CompatibleWebSocket
class that supports both the client and server sides of the WebSocket protocol independently of any specific server implementation.