blob: 999f016e23c3586cd62faa5886a8989d4bb06256 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 | // Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_SPDY_SPDY_SETTING_STORAGE_H_
#define NET_SPDY_SPDY_SETTING_STORAGE_H_
#pragma once
#include <map>
#include "base/basictypes.h"
#include "net/base/host_port_pair.h"
#include "net/spdy/spdy_framer.h"
namespace net {
// SpdySettingsStorage stores SpdySettings which have been transmitted between
// endpoints for the SPDY SETTINGS frame.
class SpdySettingsStorage {
 public:
  SpdySettingsStorage();
  ~SpdySettingsStorage();
  // Get a copy of the SpdySettings stored for a host.
  // If no settings are stored, returns an empty set of settings.
  const spdy::SpdySettings& Get(const HostPortPair& host_port_pair) const;
  // Save settings for a host.
  void Set(const HostPortPair& host_port_pair,
           const spdy::SpdySettings& settings);
 private:
  typedef std::map<HostPortPair, spdy::SpdySettings> SettingsMap;
  SettingsMap settings_map_;
  DISALLOW_COPY_AND_ASSIGN(SpdySettingsStorage);
};
}  // namespace net
#endif  // NET_SPDY_SPDY_SETTING_STORAGE_H_
 |