aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-25 18:56:12 +0000
committerlloyd <[email protected]>2010-03-25 18:56:12 +0000
commitbdcabbb783d4b8b677fad2d6566b7c5ba8b0769a (patch)
tree34eaa62cee093fe2d591eb313af80fca23f463e1 /src/ssl
parentf63a0d5463a1c8fc4bba8defc47cde6f4e752491 (diff)
Remove single byte versions of read and write - caused problems with overloads
for bind/function
Diffstat (limited to 'src/ssl')
-rw-r--r--src/ssl/socket.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ssl/socket.h b/src/ssl/socket.h
index 836a2f004..62ceed028 100644
--- a/src/ssl/socket.h
+++ b/src/ssl/socket.h
@@ -22,9 +22,6 @@ class BOTAN_DLL Socket
virtual size_t read(byte[], size_t) = 0;
virtual void write(const byte[], size_t) = 0;
- size_t read(byte& x) { return read(&x, 1); }
- void write(byte x) { write(&x, 1); }
-
virtual std::string peer_id() const = 0;
virtual void close() = 0;