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
3 // found in the LICENSE file.
5 #include "net/http/http_server_properties.h"
7 #include "base/logging.h"
8 #include "base/metrics/histogram_macros.h"
9 #include "base/strings/stringprintf.h"
10 #include "net/socket/ssl_client_socket.h"
11 #include "net/ssl/ssl_config.h"
15 const char kAlternateProtocolHeader
[] = "Alternate-Protocol";
16 const char kAlternativeServiceHeader
[] = "Alt-Svc";
20 // The order of these strings much match the order of the enum definition
21 // for AlternateProtocol.
22 const char* const kAlternateProtocolStrings
[] = {
29 static_assert(arraysize(kAlternateProtocolStrings
) ==
30 NUM_VALID_ALTERNATE_PROTOCOLS
,
31 "kAlternateProtocolStrings has incorrect size");
35 void HistogramAlternateProtocolUsage(AlternateProtocolUsage usage
) {
36 UMA_HISTOGRAM_ENUMERATION("Net.AlternateProtocolUsage", usage
,
37 ALTERNATE_PROTOCOL_USAGE_MAX
);
40 void HistogramBrokenAlternateProtocolLocation(
41 BrokenAlternateProtocolLocation location
){
42 UMA_HISTOGRAM_ENUMERATION("Net.AlternateProtocolBrokenLocation", location
,
43 BROKEN_ALTERNATE_PROTOCOL_LOCATION_MAX
);
46 bool IsAlternateProtocolValid(AlternateProtocol protocol
) {
47 return protocol
>= ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION
&&
48 protocol
<= ALTERNATE_PROTOCOL_MAXIMUM_VALID_VERSION
;
51 const char* AlternateProtocolToString(AlternateProtocol protocol
) {
53 case DEPRECATED_NPN_SPDY_2
:
58 DCHECK(IsAlternateProtocolValid(protocol
));
59 return kAlternateProtocolStrings
[
60 protocol
- ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION
];
61 case UNINITIALIZED_ALTERNATE_PROTOCOL
:
62 return "Uninitialized";
68 AlternateProtocol
AlternateProtocolFromString(const std::string
& str
) {
69 for (int i
= ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION
;
70 i
<= ALTERNATE_PROTOCOL_MAXIMUM_VALID_VERSION
; ++i
) {
71 AlternateProtocol protocol
= static_cast<AlternateProtocol
>(i
);
72 if (str
== AlternateProtocolToString(protocol
))
75 return UNINITIALIZED_ALTERNATE_PROTOCOL
;
78 AlternateProtocol
AlternateProtocolFromNextProto(NextProto next_proto
) {
80 case kProtoDeprecatedSPDY2
:
81 return DEPRECATED_NPN_SPDY_2
;
88 case kProtoQUIC1SPDY3
:
96 NOTREACHED() << "Invalid NextProto: " << next_proto
;
97 return UNINITIALIZED_ALTERNATE_PROTOCOL
;
100 std::string
AlternativeService::ToString() const {
101 return base::StringPrintf("%s %s:%d", AlternateProtocolToString(protocol
),
105 std::string
AlternativeServiceInfo::ToString() const {
106 return base::StringPrintf("%s, p=%f", alternative_service
.ToString().c_str(),
111 void HttpServerProperties::ForceHTTP11(SSLConfig
* ssl_config
) {
112 ssl_config
->next_protos
.clear();
113 ssl_config
->next_protos
.push_back(kProtoHTTP11
);