summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_client_io.h
diff options
context:
space:
mode:
authorRadoslaw Zarzynski <rzarzynski@mirantis.com>2016-07-28 12:59:10 +0200
committerRadoslaw Zarzynski <rzarzynski@mirantis.com>2016-10-21 22:57:17 +0200
commit18104f194e400c67a79378b380b70efc4a1a3a27 (patch)
treeb91d636f3e92e5f7334a1ebc9d26935e9a33d59c /src/rgw/rgw_client_io.h
parentrgw: further cleaning in RGWStreamIOBase. (diff)
downloadceph-18104f194e400c67a79378b380b70efc4a1a3a27.tar.xz
ceph-18104f194e400c67a79378b380b70efc4a1a3a27.zip
rgw: rename RGWStreamIOBase to RGWStreamIOEngine.
Signed-off-by: Radoslaw Zarzynski <rzarzynski@mirantis.com>
Diffstat (limited to 'src/rgw/rgw_client_io.h')
-rw-r--r--src/rgw/rgw_client_io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rgw/rgw_client_io.h b/src/rgw/rgw_client_io.h
index e3e5e929d22..1012ca0985b 100644
--- a/src/rgw/rgw_client_io.h
+++ b/src/rgw/rgw_client_io.h
@@ -34,7 +34,7 @@ public:
}; /* RGWClient IO */
-class RGWStreamIOBase : public RGWClientIO {
+class RGWStreamIOEngine : public RGWClientIO {
virtual int read_data(char *buf, int max) = 0;
virtual int write_data(const char *buf, int len) = 0;
public:
@@ -53,7 +53,7 @@ public:
};
/* HTTP IO: compatibility layer */
-class RGWStreamIO : public RGWStreamIOBase {
+class RGWStreamIO : public RGWStreamIOEngine {
bool _account;
size_t bytes_sent;
size_t bytes_received;