Limited clipboard size to 1kb when SSL is enabled #4601

@XinyuHou I had no choice but to block clipboard data over 1kb in
size... anything over that and you get an access violation.
This commit is contained in:
Nick Bolton 2015-05-26 15:04:04 +01:00
parent fd72bf17ce
commit 8b975878c2
4 changed files with 27 additions and 2 deletions

View file

@ -2389,3 +2389,9 @@ Server::dragInfoReceived(UInt32 fileNum, String content)
m_screen->startDraggingFiles(m_dragFileList);
}
bool
Server::isSecure() const
{
return m_clientListener->isSecure();
}