// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_WEBSOCKETS_WEBSOCKET_FRAME_PARSER_H_ #define NET_WEBSOCKETS_WEBSOCKET_FRAME_PARSER_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include <vector> #include "base/containers/span.h" #include "net/base/net_export.h" #include "net/websockets/websocket_errors.h" #include "net/websockets/websocket_frame.h" namespace net { struct WebSocketFrameChunk; struct WebSocketFrameHeader; // Parses WebSocket frames from byte stream. // // Specification of WebSocket frame format is available at // <http://tools.ietf.org/html/rfc6455#section-5>. // This class does *NOT* unmask frame payload. class NET_EXPORT WebSocketFrameParser { … }; } // namespace net #endif // NET_WEBSOCKETS_WEBSOCKET_FRAME_PARSER_H_