mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-21 02:17:37 +02:00
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:
parent
fd72bf17ce
commit
8b975878c2
4 changed files with 27 additions and 2 deletions
|
@ -2389,3 +2389,9 @@ Server::dragInfoReceived(UInt32 fileNum, String content)
|
|||
|
||||
m_screen->startDraggingFiles(m_dragFileList);
|
||||
}
|
||||
|
||||
bool
|
||||
Server::isSecure() const
|
||||
{
|
||||
return m_clientListener->isSecure();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue