mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
19 lines
529 B
C
19 lines
529 B
C
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2025 Deskflow Developers
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* \enum SecurityLevel
|
|
* \brief This enum is used to set how the client and server will communicate.
|
|
*/
|
|
enum class SecurityLevel
|
|
{
|
|
PlainText, /** Connections will not be encrypted */
|
|
Encrypted, /** Connections will be encrypted */
|
|
PeerAuth /** Connections will be encrypted and peers must be authenticated */
|
|
};
|