Commit a0f635ec authored by old-bear's avatar old-bear

+ Add some temporary debug

parent d5497a25
...@@ -660,6 +660,9 @@ int Socket::Create(const SocketOptions& options, SocketId* id) { ...@@ -660,6 +660,9 @@ int Socket::Create(const SocketOptions& options, SocketId* id) {
} }
*id = m->_this_id; *id = m->_this_id;
m->_options = options; m->_options = options;
if (m->_ssl_state == SSL_UNKNOWN) {
CHECK(m->_options.ssl_ctx);
}
return 0; return 0;
} }
...@@ -1771,6 +1774,9 @@ int Socket::SSLHandshake(int fd, bool server_mode) { ...@@ -1771,6 +1774,9 @@ int Socket::SSLHandshake(int fd, bool server_mode) {
if (_options.ssl_ctx == NULL) { if (_options.ssl_ctx == NULL) {
if (server_mode) { if (server_mode) {
LOG(ERROR) << "Lack SSL configuration to handle SSL request"; LOG(ERROR) << "Lack SSL configuration to handle SSL request";
std::stringstream ss;
DebugSocket(ss, id());
LOG(ERROR) << ss;
return -1; return -1;
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment