소스 검색

Remember to re-install inbuf/outbuf callbacks on ssl bufferevents

If we don't, we will (among other bad things) never update
lastread/lastwritten, and so flood the network with keepalives.
Nick Mathewson 15 년 전
부모
커밋
5710d99f00
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      src/or/connection_or.c

+ 5 - 2
src/or/connection_or.c

@@ -914,9 +914,12 @@ connection_tls_start_handshake(or_connection_t *conn, int receiving)
     if (conn->bucket_cfg)
       bufferevent_set_rate_limit(conn->_base.bufev, conn->bucket_cfg);
     connection_enable_rate_limiting(TO_CONN(conn));
-    bufferevent_setcb(b, connection_handle_read_cb,
+
+    connection_configure_bufferevent_callbacks(TO_CONN(conn));
+    bufferevent_setcb(b,
+                      connection_handle_read_cb,
                       connection_handle_write_cb,
-                      connection_or_handle_event_cb,
+                      connection_or_handle_event_cb,/* overriding this one*/
                       TO_CONN(conn));
   }
 #endif