Commit 3c898eb5 authored by jan.koester's avatar jan.koester
Browse files

testing

parent f34422a0
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -18,3 +18,6 @@ silence_logs.py
test_openssl.sh
test_tls_client.py
*.log
server_error.txt
server_error.txt
server_output.txt
+128 −318

File changed.

Preview size limit exceeded, changes collapsed.

+2 −16
Original line number Diff line number Diff line
[START]
=== HTTPS Test Starting ===
Certificate loaded successfully
Creating SSL socket...
SSL socket created successfully
Private key loaded successfully
Starting HTTPS server on 127.0.0.1:8443...
Socket FD before event: 268
Creating MyServer instance (will call bind/listen)...
Server object created (bind/listen done)
Socket FD after event: 268
Starting event loop...
New HTTPS connection from peer
HTTPS connection closed
New HTTPS connection from peer
HTTPS connection closed
Certificate validity: OK.
/
+3 −0
Original line number Diff line number Diff line
@@ -173,6 +173,9 @@ namespace netplus {

            std::atomic_bool WritePending{ false };
            std::atomic_bool ReadPending{ false };  // Prevent multiple simultaneous READ processing
            std::atomic_bool PeerClosed{ false };   // Peer has closed connection (READ returned 0)
            std::atomic_bool Closing{ false };      // Connection is being closed - don't start new I/O
            std::atomic_int PendingOps{ 0 };        // Count of pending I/O operations

            int DebugId=0;

+183 −76

File changed.

Preview size limit exceeded, changes collapsed.

Loading