blob: d664a082cb23d0ac7600d13a3c0fd90b1e0045ba (
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
43
44
45
46
|
// 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 {
SourceAddressToken::SourceAddressToken() {
}
SourceAddressToken::~SourceAddressToken() {
}
string SourceAddressToken::SerializeAsString() const {
return ip_ + " " + base::Int64ToString(timestamp_);
}
bool SourceAddressToken::ParseFromArray(unsigned char* plaintext,
size_t plaintext_length) {
string data(reinterpret_cast<const char*>(plaintext), plaintext_length);
vector<string> results;
base::SplitString(data, ' ', &results);
if (results.size() < 2) {
return false;
}
int64 timestamp;
if (!base::StringToInt64(results[1], ×tamp)) {
return false;
}
ip_ = results[0];
timestamp_ = timestamp;
return true;
}
} // namespace net
|