refactor: mv net/InverseSockets/SslLogger => net/SslLogger

This commit is contained in:
sithlord48
2025-02-22 00:35:00 -05:00
committed by Nick Bolton
parent 5d5e32a676
commit f9b6bcc950
6 changed files with 5 additions and 5 deletions

View File

@ -25,6 +25,8 @@ add_library(net STATIC
SocketMultiplexer.h
SecureUtils.cpp
SecureUtils.h
SslLogger.cpp
SslLogger.h
TCPListenSocket.cpp
TCPListenSocket.h
TCPSocket.cpp
@ -48,8 +50,6 @@ add_library(net STATIC
InverseSockets/SecureServerSocket.h
InverseSockets/SslApi.cpp
InverseSockets/SslApi.h
InverseSockets/SslLogger.cpp
InverseSockets/SslLogger.h
)
target_link_libraries(

View File

@ -5,7 +5,7 @@
*/
#include "SecureClientSocket.h"
#include "SslLogger.h"
#include "../SslLogger.h"
#include <fstream>
#include <set>

View File

@ -5,7 +5,7 @@
*/
#include "SslApi.h"
#include "SslLogger.h"
#include "../SslLogger.h"
#include <fstream>
#include <memory>

View File

@ -18,7 +18,7 @@
#include "net/FingerprintDatabase.h"
#include "net/TCPSocket.h"
#include "net/TSocketMultiplexerMethodJob.h"
#include <net/InverseSockets/SslLogger.h>
#include <net/SslLogger.h>
#include <cstdlib>
#include <cstring>