diff options
author | lloyd <[email protected]> | 2010-03-25 18:56:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-25 18:56:12 +0000 |
commit | bdcabbb783d4b8b677fad2d6566b7c5ba8b0769a (patch) | |
tree | 34eaa62cee093fe2d591eb313af80fca23f463e1 /src/ssl | |
parent | f63a0d5463a1c8fc4bba8defc47cde6f4e752491 (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.h | 3 |
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; |