Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Unified Diff: net/quic/proto/source_address_token.proto

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/proto/cached_network_parameters.proto ('k') | net/quic/quic_address_mismatch.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/proto/source_address_token.proto
diff --git a/net/quic/proto/source_address_token.proto b/net/quic/proto/source_address_token.proto
deleted file mode 100644
index 8d833de97f8e4999fc84a7edef5a7268c24682ea..0000000000000000000000000000000000000000
--- a/net/quic/proto/source_address_token.proto
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2015 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.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-import "cached_network_parameters.proto";
-
-package net;
-
-// A SourceAddressToken is serialised, encrypted and sent to clients so that
-// they can prove ownership of an IP address.
-message SourceAddressToken {
- // ip contains either 4 (IPv4) or 16 (IPv6) bytes of IP address in network
- // byte order.
- required bytes ip = 1;
- // timestamp contains a UNIX timestamp value of the time when the token was
- // created.
- required int64 timestamp = 2;
- // The server can provide estimated network parameters to be used for
- // initial parameter selection in future connections.
- optional CachedNetworkParameters cached_network_parameters = 3;
-};
-
-// SourceAddressTokens are simply lists of SourceAddressToken messages.
-message SourceAddressTokens {
- // This field has id 4 to avoid ambiguity between the serialized form of
- // SourceAddressToken vs SourceAddressTokens.
- repeated SourceAddressToken tokens = 4;
-};
« no previous file with comments | « net/quic/proto/cached_network_parameters.proto ('k') | net/quic/quic_address_mismatch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698