// Copyright 2011 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_SERVER_HTTP_SERVER_REQUEST_INFO_H_ #define NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_ #include <map> #include <string> #include "net/base/ip_endpoint.h" #include "net/base/net_export.h" namespace net { // Meta information about an HTTP request. // This is geared toward servers in that it keeps a map of the headers and // values rather than just a list of header strings (which net::HttpRequestInfo // does). class NET_EXPORT HttpServerRequestInfo { … }; } // namespace net #endif // NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_