| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "net/test/spawned_test_server/base_test_server.h" | 5 #include "net/test/spawned_test_server/base_test_server.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/base64.h" | 10 #include "base/base64.h" |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 scoped_ptr<base::ListValue> bulk_cipher_values(new base::ListValue()); | 391 scoped_ptr<base::ListValue> bulk_cipher_values(new base::ListValue()); |
| 392 GetCiphersList(ssl_options_.bulk_ciphers, bulk_cipher_values.get()); | 392 GetCiphersList(ssl_options_.bulk_ciphers, bulk_cipher_values.get()); |
| 393 if (bulk_cipher_values->GetSize()) | 393 if (bulk_cipher_values->GetSize()) |
| 394 arguments->Set("ssl-bulk-cipher", bulk_cipher_values.release()); | 394 arguments->Set("ssl-bulk-cipher", bulk_cipher_values.release()); |
| 395 if (ssl_options_.record_resume) | 395 if (ssl_options_.record_resume) |
| 396 arguments->Set("https-record-resume", base::Value::CreateNullValue()); | 396 arguments->Set("https-record-resume", base::Value::CreateNullValue()); |
| 397 if (ssl_options_.tls_intolerant != SSLOptions::TLS_INTOLERANT_NONE) { | 397 if (ssl_options_.tls_intolerant != SSLOptions::TLS_INTOLERANT_NONE) { |
| 398 arguments->Set("tls-intolerant", | 398 arguments->Set("tls-intolerant", |
| 399 new base::FundamentalValue(ssl_options_.tls_intolerant)); | 399 new base::FundamentalValue(ssl_options_.tls_intolerant)); |
| 400 } | 400 } |
| 401 if (!ssl_options_.signed_cert_timestamps.empty()) { |
| 402 std::string b64_scts; |
| 403 if (!base::Base64Encode(ssl_options_.signed_cert_timestamps, &b64_scts)) |
| 404 return false; |
| 405 arguments->SetString("signed-cert-timestamps", b64_scts); |
| 406 } |
| 401 } | 407 } |
| 402 | 408 |
| 403 return GenerateAdditionalArguments(arguments); | 409 return GenerateAdditionalArguments(arguments); |
| 404 } | 410 } |
| 405 | 411 |
| 406 bool BaseTestServer::GenerateAdditionalArguments( | 412 bool BaseTestServer::GenerateAdditionalArguments( |
| 407 base::DictionaryValue* arguments) const { | 413 base::DictionaryValue* arguments) const { |
| 408 return true; | 414 return true; |
| 409 } | 415 } |
| 410 | 416 |
| 411 } // namespace net | 417 } // namespace net |
| OLD | NEW |