• Home
  • History
  • Annotate
  • only in /external/chromium_org/net/websockets/
NameDateSize

..03-Jan-20144 KiB

OWNERS03-Jan-2014129

PRESUBMIT.py03-Jan-20142.3 KiB

README03-Jan-20141.8 KiB

websocket_channel.cc03-Jan-201425.5 KiB

websocket_channel.h03-Jan-201412 KiB

websocket_channel_test.cc03-Jan-201473.5 KiB

websocket_errors.cc03-Jan-20141.2 KiB

websocket_errors.h03-Jan-20141.9 KiB

websocket_errors_unittest.cc03-Jan-20141.1 KiB

websocket_event_interface.h03-Jan-20143 KiB

websocket_frame.cc03-Jan-20148.5 KiB

websocket_frame.h03-Jan-20146.1 KiB

websocket_frame_parser.cc03-Jan-20146.9 KiB

websocket_frame_parser.h03-Jan-20143.3 KiB

websocket_frame_parser_unittest.cc03-Jan-201420.5 KiB

websocket_frame_unittest.cc03-Jan-201418.2 KiB

websocket_handshake_handler.cc03-Jan-201419.5 KiB

websocket_handshake_handler.h03-Jan-20146.9 KiB

websocket_handshake_handler_spdy_unittest.cc03-Jan-20147.8 KiB

websocket_handshake_handler_unittest.cc03-Jan-201420.8 KiB

websocket_job.cc03-Jan-201421 KiB

websocket_job.h03-Jan-20145.5 KiB

websocket_job_unittest.cc03-Jan-201438.2 KiB

websocket_mux.h03-Jan-20141.5 KiB

websocket_net_log_params.cc03-Jan-20141.3 KiB

websocket_net_log_params.h03-Jan-2014586

websocket_net_log_params_unittest.cc03-Jan-20141.8 KiB

websocket_stream.cc03-Jan-2014987

websocket_stream.h03-Jan-20149.6 KiB

websocket_stream_base.h03-Jan-20141.5 KiB

websocket_throttle.cc03-Jan-20144.4 KiB

websocket_throttle.h03-Jan-20142.5 KiB

websocket_throttle_unittest.cc03-Jan-201412.3 KiB

README

1This directory contains files related to Chromium's WebSocket
2implementation. See http://www.websocket.org/ for an explanation of WebSockets.
3
4As of April 2013, the contents of this directory are in a transitional state,
5and contain parts of two different WebSocket implementations.
6
7The following files are part of the legacy implementation. The legacy
8implementation performs WebSocket framing within Blink and presents a
9low-level socket-like interface to the renderer process. It is described in the
10design doc at
11https://docs.google.com/a/google.com/document/d/1_R6YjCIrm4kikJ3YeapcOU2Keqr3lVUPd-OeaIJ93qQ/preview
12
13websocket_handshake_handler.cc
14websocket_handshake_handler.h
15websocket_handshake_handler_unittest.cc
16websocket_handshake_handler_spdy2_unittest.cc
17websocket_handshake_handler_spdy3_unittest.cc
18websocket_job.cc
19websocket_job.h
20websocket_job_unittest.cc
21websocket_net_log_params.cc
22websocket_net_log_params.h
23websocket_net_log_params_unittest.cc
24websocket_throttle.cc
25websocket_throttle.h
26websocket_throttle_unittest.cc
27
28The following files are part of the new implementation. The new implementation
29performs framing and implements protocol semantics in the browser process, and
30presents a high-level interface to the renderer process similar to a
31multiplexing proxy. This is not yet used in any stable Chromium version.
32
33websocket_channel.cc
34websocket_channel.h
35websocket_channel_test.cc
36websocket_errors.cc
37websocket_errors.h
38websocket_errors_unittest.cc
39websocket_event_interface.h
40websocket_frame.cc
41websocket_frame.h
42websocket_frame_parser.cc
43websocket_frame_parser.h
44websocket_frame_parser_unittest.cc
45websocket_frame_unittest.cc
46websocket_mux.h
47websocket_stream_base.h
48websocket_stream.cc
49websocket_stream.h
50
51A pre-submit check helps us keep this README file up-to-date:
52
53PRESUBMIT.py
54