blob: 7ac43f0fb2a1d4be9c0ba8afbdde06c75316d0d2 [file] [log] [blame]
// Copyright (c) 2013 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.
#include "net/quic/crypto/source_address_token.h"
#include <vector>
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
using std::string;
using std::vector;
namespace net {
CachedNetworkParameters::CachedNetworkParameters()
: bandwidth_estimate_bytes_per_second_(0),
max_bandwidth_estimate_bytes_per_second_(0),
max_bandwidth_timestamp_seconds_(0),
min_rtt_ms_(0),
previous_connection_state_(0),
timestamp_(0) {
}
CachedNetworkParameters::~CachedNetworkParameters() {
}
bool CachedNetworkParameters::operator==(
const CachedNetworkParameters& other) const {
return serving_region_ == other.serving_region_ &&
bandwidth_estimate_bytes_per_second_ ==
other.bandwidth_estimate_bytes_per_second_ &&
max_bandwidth_estimate_bytes_per_second_ ==
other.max_bandwidth_estimate_bytes_per_second_ &&
max_bandwidth_timestamp_seconds_ ==
other.max_bandwidth_timestamp_seconds_ &&
min_rtt_ms_ == other.min_rtt_ms_ &&
previous_connection_state_ == other.previous_connection_state_ &&
timestamp_ == other.timestamp_;
}
bool CachedNetworkParameters::operator!=(
const CachedNetworkParameters& other) const {
return !(*this == other);
}
SourceAddressToken::SourceAddressToken()
: has_cached_network_parameters_(false) {
}
SourceAddressToken::~SourceAddressToken() {
}
string SourceAddressToken::SerializeAsString() const {
string out;
out.push_back(ip_.size());
out.append(ip_);
string time_str = base::Int64ToString(timestamp_);
out.push_back(time_str.size());
out.append(time_str);
// TODO(rtenneti): Implement serialization of optional CachedNetworkParameters
// when they are used.
return out;
}
bool SourceAddressToken::ParseFromArray(const char* plaintext,
size_t plaintext_length) {
if (plaintext_length == 0) {
return false;
}
size_t ip_len = plaintext[0];
if (plaintext_length <= 1 + ip_len) {
return false;
}
size_t time_len = plaintext[1 + ip_len];
if (plaintext_length != 1 + ip_len + 1 + time_len) {
return false;
}
string time_str(&plaintext[1 + ip_len + 1], time_len);
int64 timestamp;
if (!base::StringToInt64(time_str, &timestamp)) {
return false;
}
ip_.assign(&plaintext[1], ip_len);
timestamp_ = timestamp;
// TODO(rtenneti): Implement parsing of optional CachedNetworkParameters when
// they are used.
return true;
}
} // namespace net