// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // The GZipHeader class allows you to parse a gzip header, such as you // might find at the beginning of a file compressed by gzip (ie, a .gz // file), or at the beginning of an HTTP response that uses a gzip // Content-Encoding. See RFC 1952 for the specification for the gzip // header. // // The model is that you call ReadMore() for each chunk of bytes // you've read from a file or socket. // #ifndef NET_FILTER_GZIP_HEADER_H_ #define NET_FILTER_GZIP_HEADER_H_ #include <stddef.h> #include <stdint.h> #include "net/base/net_export.h" namespace net { class NET_EXPORT GZipHeader { … }; } // namespace net #endif // NET_FILTER_GZIP_HEADER_H_