From c4804ee50b27707984dd0f9d9920fb731d9e6717 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 28 Mar 2015 20:14:12 +0900 Subject: [PATCH] h2load: Remove Client::noop --- src/h2load.cc | 2 -- src/h2load.h | 1 - 2 files changed, 3 deletions(-) diff --git a/src/h2load.cc b/src/h2load.cc index 145b0946..1704f26c 100644 --- a/src/h2load.cc +++ b/src/h2load.cc @@ -404,8 +404,6 @@ void Client::on_stream_close(int32_t stream_id, bool success, } } -int Client::noop() { return 0; } - int Client::connection_made() { if (ssl) { report_tls_info(); diff --git a/src/h2load.h b/src/h2load.h index a3c5dd1b..a7b8f67d 100644 --- a/src/h2load.h +++ b/src/h2load.h @@ -207,7 +207,6 @@ struct Client { int on_read(const uint8_t *data, size_t len); int on_write(); - int noop(); int connection_made();