diff options
Diffstat (limited to 'vmime/security/sasl/SASLSocket.hpp')
-rw-r--r-- | vmime/security/sasl/SASLSocket.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vmime/security/sasl/SASLSocket.hpp b/vmime/security/sasl/SASLSocket.hpp index 388bf6f1..fc6fc394 100644 --- a/vmime/security/sasl/SASLSocket.hpp +++ b/vmime/security/sasl/SASLSocket.hpp @@ -50,10 +50,10 @@ public: void connect(const string& address, const port_t port); void disconnect(); - const bool isConnected() const; + bool isConnected() const; void receive(string& buffer); - const int receiveRaw(char* buffer, const int count); + int receiveRaw(char* buffer, const int count); void send(const string& buffer); void sendRaw(const char* buffer, const int count); |