nghttpx: Rename Http2Session::on_connect as connection_made

This commit is contained in:
Tatsuhiro Tsujikawa 2015-03-28 20:19:17 +09:00
parent e9cdb9c896
commit 8bf440b89c
2 changed files with 4 additions and 4 deletions

View File

@ -1212,7 +1212,7 @@ nghttp2_session_callbacks *create_http2_downstream_callbacks() {
return callbacks;
}
int Http2Session::on_connect() {
int Http2Session::connection_made() {
int rv;
state_ = Http2Session::CONNECTED;
@ -1561,7 +1561,7 @@ int Http2Session::connected() {
return do_write();
}
if (on_connect() != 0) {
if (connection_made() != 0) {
state_ = CONNECT_FAILING;
return -1;
}
@ -1657,7 +1657,7 @@ int Http2Session::tls_handshake() {
read_ = &Http2Session::read_tls;
write_ = &Http2Session::write_tls;
if (on_connect() != 0) {
if (connection_made() != 0) {
state_ = CONNECT_FAILING;
return -1;
}

View File

@ -89,7 +89,7 @@ public:
int resume_data(Http2DownstreamConnection *dconn);
int on_connect();
int connection_made();
int do_read();
int do_write();