commit | 825b429907d4638bcb3605fd8c424a6fc14adb76 | [log] [tgz] |
---|---|---|
author | Natalie Weizenbaum <nweiz@google.com> | Thu Jan 28 20:07:50 2016 |
committer | Natalie Weizenbaum <nweiz@google.com> | Thu Jan 28 20:07:50 2016 |
tree | 4c84d5d506fe08d921d9ee8c8014c0f33a3d0bc0 | |
parent | d8fbf6b8da1a545d65173d236bd800081660098f [diff] |
Add a WebSocketChannel class. This deprecates CompatibleWebSocket in favor of the new class. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1646583003 .
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.