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

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: update to latest version of tb nego spec; tweak SSLConfig Created 5 years, 1 month 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 // "net_error": <Net integer error code>, 472 // "net_error": <Net integer error code>,
473 // } 473 // }
474 EVENT_TYPE(SSL_GET_DOMAIN_BOUND_CERT) 474 EVENT_TYPE(SSL_GET_DOMAIN_BOUND_CERT)
475 475
476 // The SSL server requested a channel id. 476 // The SSL server requested a channel id.
477 EVENT_TYPE(SSL_CHANNEL_ID_REQUESTED) 477 EVENT_TYPE(SSL_CHANNEL_ID_REQUESTED)
478 478
479 // A channel ID was provided to the SSL library to be sent to the SSL server. 479 // A channel ID was provided to the SSL library to be sent to the SSL server.
480 EVENT_TYPE(SSL_CHANNEL_ID_PROVIDED) 480 EVENT_TYPE(SSL_CHANNEL_ID_PROVIDED)
481 481
482 // The start/end of getting the keypair for a token binding.
483 EVENT_TYPE(SSL_GET_TOKEN_BINDING_KEY)
davidben 2015/11/04 00:40:35 Unused?
nharper 2015/11/04 02:28:04 removed.
484
482 // A client certificate (or none) was provided to the SSL library to be sent 485 // A client certificate (or none) was provided to the SSL library to be sent
483 // to the SSL server. 486 // to the SSL server.
484 // The following parameters are attached to the event: 487 // The following parameters are attached to the event:
485 // { 488 // {
486 // "cert_count": <Number of certificates>, 489 // "cert_count": <Number of certificates>,
487 // } 490 // }
488 // A cert_count of 0 means no client certificate was provided. 491 // A cert_count of 0 means no client certificate was provided.
489 // A cert_count of -1 means a client certificate was provided but we don't 492 // A cert_count of -1 means a client certificate was provided but we don't
490 // know the size of the certificate chain. 493 // know the size of the certificate chain.
491 EVENT_TYPE(SSL_CLIENT_CERT_PROVIDED) 494 EVENT_TYPE(SSL_CLIENT_CERT_PROVIDED)
(...skipping 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after
2670 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which 2673 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which
2671 // the request is delayed due to that check. 2674 // the request is delayed due to that check.
2672 // 2675 //
2673 // The BEGIN phase contains the following parameters: 2676 // The BEGIN phase contains the following parameters:
2674 // { 2677 // {
2675 // "url": <The URL being checked>, 2678 // "url": <The URL being checked>,
2676 // "defer_reason" : < "at_start", "at_response", "redirect", 2679 // "defer_reason" : < "at_start", "at_response", "redirect",
2677 // "resumed_redirect", "unchecked_redirect"> 2680 // "resumed_redirect", "unchecked_redirect">
2678 // } 2681 // }
2679 EVENT_TYPE(SAFE_BROWSING_DEFERRED) 2682 EVENT_TYPE(SAFE_BROWSING_DEFERRED)
OLDNEW
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_openssl.h » ('j') | net/socket/ssl_client_socket_openssl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698