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

Unified Diff: net/socket/ssl_client_socket_openssl.h

Issue 5528003: Add support for OpenSSL Next Protocol Negotiation (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_openssl.cc » ('j') | net/socket/ssl_client_socket_openssl.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_openssl.h
===================================================================
--- net/socket/ssl_client_socket_openssl.h (revision 67990)
+++ net/socket/ssl_client_socket_openssl.h (working copy)
@@ -6,6 +6,8 @@
#define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_
#pragma once
+#include <string>
+
#include "base/scoped_ptr.h"
#include "net/base/cert_verify_result.h"
#include "net/base/completion_callback.h"
@@ -67,6 +69,11 @@
virtual bool SetReceiveBufferSize(int32 size);
virtual bool SetSendBufferSize(int32 size);
+ void set_npn_status(NextProtoStatus status) { npn_status_ = status; }
joth 2010/12/02 17:46:55 could you put these up next to host_and_port(), as
Kristian_ 2010/12/03 14:58:56 Done, actually removed.
+ void set_npn_proto(const char* proto, int len) {
+ npn_proto_.assign(proto, len);
+ }
+
private:
bool Init();
void DoReadCallback(int result);
@@ -146,6 +153,8 @@
STATE_VERIFY_CERT_COMPLETE,
};
State next_handshake_state_;
+ NextProtoStatus npn_status_;
+ std::string npn_proto_;
BoundNetLog net_log_;
};
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_openssl.cc » ('j') | net/socket/ssl_client_socket_openssl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698