diff options
author | Radoslaw Zarzynski <rzarzynski@mirantis.com> | 2016-07-28 12:59:10 +0200 |
---|---|---|
committer | Radoslaw Zarzynski <rzarzynski@mirantis.com> | 2016-10-21 22:57:17 +0200 |
commit | 18104f194e400c67a79378b380b70efc4a1a3a27 (patch) | |
tree | b91d636f3e92e5f7334a1ebc9d26935e9a33d59c /src/rgw/rgw_client_io.h | |
parent | rgw: further cleaning in RGWStreamIOBase. (diff) | |
download | ceph-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.h | 4 |
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; |