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

Side by Side Diff: net/log/net_log_event_type_list.h

Issue 1360633002: Implement Token Binding negotiation TLS extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test-server-flags
Patch Set: Rip out TB key lookup from SSLClientSocketOpenSSL; fold TokenBindingExtension class into SSLClientS… Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // NOTE: No header guards are used, since this file is intended to be expanded 5 // NOTE: No header guards are used, since this file is intended to be expanded
6 // directly into net_log.h. DO NOT include this file anywhere else. 6 // directly into net_log.h. DO NOT include this file anywhere else.
7 7
8 // In the event of a failure, a many end events will have a |net_error| 8 // In the event of a failure, a many end events will have a |net_error|
9 // parameter with the integer error code associated with the failure. Most 9 // parameter with the integer error code associated with the failure. Most
10 // of these parameters are not individually documented. 10 // of these parameters are not individually documented.
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 // "net_error": <Net integer error code>, 464 // "net_error": <Net integer error code>,
465 // } 465 // }
466 EVENT_TYPE(SSL_GET_DOMAIN_BOUND_CERT) 466 EVENT_TYPE(SSL_GET_DOMAIN_BOUND_CERT)
467 467
468 // The SSL server requested a channel id. 468 // The SSL server requested a channel id.
469 EVENT_TYPE(SSL_CHANNEL_ID_REQUESTED) 469 EVENT_TYPE(SSL_CHANNEL_ID_REQUESTED)
470 470
471 // A channel ID was provided to the SSL library to be sent to the SSL server. 471 // A channel ID was provided to the SSL library to be sent to the SSL server.
472 EVENT_TYPE(SSL_CHANNEL_ID_PROVIDED) 472 EVENT_TYPE(SSL_CHANNEL_ID_PROVIDED)
473 473
474 // The start/end of getting the keypair for a token binding.
475 EVENT_TYPE(SSL_GET_TOKEN_BINDING_KEY)
476
474 // A client certificate (or none) was provided to the SSL library to be sent 477 // A client certificate (or none) was provided to the SSL library to be sent
475 // to the SSL server. 478 // to the SSL server.
476 // The following parameters are attached to the event: 479 // The following parameters are attached to the event:
477 // { 480 // {
478 // "cert_count": <Number of certificates>, 481 // "cert_count": <Number of certificates>,
479 // } 482 // }
480 // A cert_count of 0 means no client certificate was provided. 483 // A cert_count of 0 means no client certificate was provided.
481 // A cert_count of -1 means a client certificate was provided but we don't 484 // A cert_count of -1 means a client certificate was provided but we don't
482 // know the size of the certificate chain. 485 // know the size of the certificate chain.
483 EVENT_TYPE(SSL_CLIENT_CERT_PROVIDED) 486 EVENT_TYPE(SSL_CLIENT_CERT_PROVIDED)
(...skipping 2149 matching lines...) Expand 10 before | Expand all | Expand 10 after
2633 // 2636 //
2634 // The END phase contains the following parameters: 2637 // The END phase contains the following parameters:
2635 // { 2638 // {
2636 // "net_error": <The net_error of the completion of the config request>, 2639 // "net_error": <The net_error of the completion of the config request>,
2637 // "http_response_code": <The HTTP response code of the config request>, 2640 // "http_response_code": <The HTTP response code of the config request>,
2638 // "failure_count": <The number of consecutive config request failures>, 2641 // "failure_count": <The number of consecutive config request failures>,
2639 // "retry_delay_seconds": <The length of time after which another config 2642 // "retry_delay_seconds": <The length of time after which another config
2640 // request will be made>, 2643 // request will be made>,
2641 // } 2644 // }
2642 EVENT_TYPE(DATA_REDUCTION_PROXY_CONFIG_REQUEST) 2645 EVENT_TYPE(DATA_REDUCTION_PROXY_CONFIG_REQUEST)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698