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.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";
19 // The order of these strings much match the order of the enum definition
20 // for AlternateProtocol.
21 const char* const kAlternateProtocolStrings
[] = {
25 "npn-h2-14", // HTTP/2 draft-14. Called SPDY4 internally.
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
:
59 DCHECK(IsAlternateProtocolValid(protocol
));
60 return kAlternateProtocolStrings
[
61 protocol
- ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION
];
62 case UNINITIALIZED_ALTERNATE_PROTOCOL
:
63 return "Uninitialized";
69 AlternateProtocol
AlternateProtocolFromString(const std::string
& str
) {
70 for (int i
= ALTERNATE_PROTOCOL_MINIMUM_VALID_VERSION
;
71 i
<= ALTERNATE_PROTOCOL_MAXIMUM_VALID_VERSION
; ++i
) {
72 AlternateProtocol protocol
= static_cast<AlternateProtocol
>(i
);
73 if (str
== AlternateProtocolToString(protocol
))
76 return UNINITIALIZED_ALTERNATE_PROTOCOL
;
79 AlternateProtocol
AlternateProtocolFromNextProto(NextProto next_proto
) {
81 case kProtoDeprecatedSPDY2
:
82 return DEPRECATED_NPN_SPDY_2
;
91 case kProtoQUIC1SPDY3
:
99 NOTREACHED() << "Invalid NextProto: " << next_proto
;
100 return UNINITIALIZED_ALTERNATE_PROTOCOL
;
103 std::string
AlternateProtocolInfo::ToString() const {
104 return base::StringPrintf("%d:%s p=%f", port
,
105 AlternateProtocolToString(protocol
), probability
);
109 void HttpServerProperties::ForceHTTP11(SSLConfig
* ssl_config
) {
110 ssl_config
->next_protos
.clear();
111 ssl_config
->next_protos
.push_back(kProtoHTTP11
);