Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
SslLogger.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2015 - 2022 Symless Ltd.
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8#include <openssl/ssl.h>
9#include <string>
10
12{
13public:
14 static void logSecureLibInfo();
15 static void logSecureCipherInfo(const SSL *ssl);
16 static void logSecureConnectInfo(const SSL *ssl);
17 static void logError(const std::string &reason = "");
18 static void logErrorByCode(int code, int retry);
19};
Definition SslLogger.h:12
static void logSecureLibInfo()
Definition SslLogger.cpp:66
static void logSecureCipherInfo(const SSL *ssl)
Definition SslLogger.cpp:77
static void logSecureConnectInfo(const SSL *ssl)
Definition SslLogger.cpp:85
static void logError(const std::string &reason="")
Definition SslLogger.cpp:122
static void logErrorByCode(int code, int retry)
Definition SslLogger.cpp:136