Fixed missing function.
This commit is contained in:
parent
5d82825687
commit
bff027cfa0
@ -51,6 +51,12 @@ bool testSocket::isConnected() const
|
||||
}
|
||||
|
||||
|
||||
testSocket::size_type testSocket::getBlockSize() const
|
||||
{
|
||||
return 16384;
|
||||
}
|
||||
|
||||
|
||||
void testSocket::receive(vmime::string& buffer)
|
||||
{
|
||||
buffer = m_inBuffer;
|
||||
|
@ -216,6 +216,8 @@ public:
|
||||
int receiveRaw(char* buffer, const int count);
|
||||
void sendRaw(const char* buffer, const int count);
|
||||
|
||||
size_type getBlockSize() const;
|
||||
|
||||
/** Send data to client.
|
||||
*
|
||||
* @buffer data to send
|
||||
|
Loading…
Reference in New Issue
Block a user