Dies ist eine reine Headerdatei-Implementierung eines C++-Clients/Servers mit oder ohne SSL/TLS/DTLS. Die Implementierung verwendet OpenSSL und BSD API, um die zugrunde liegenden Socket-Schnittstellen zu implementieren.
Die Kompilierung wurde getestet mit:
Basis-Sockect-Klasse für BSD-API-Klassenmethoden.
// default constructor - no socket created because type is unknown
Socket ();
Socket::initSocket (domain, type, protocol); // creates socket
// create socket from previously created file descriptor
Socket ( int );
// create socket of the given type - NOTE: This returns a Socket class type that is not a Tcp or Udp socket class
Socket (domain, type, protocol);
Erstellen Sie ein TCP-Serverobjekt zum Akzeptieren von TCP-Verbindungen.
// default no IP/port bound but TCP socket created
TcpServer ();
// TCP socket created, IP/port bound, but not listening
TcpServer ( const uint16_t port, const std::string& ipAddr = " 0.0.0.0 " );
// TCP socket created, IP/port bound, and listening for clients
TcpServer ( const std::string& ipAddr, const uint16_t port, const int backlog);
Erstellen Sie ein TCP-Clientobjekt, um eine Verbindung zu einem bekannten TCP-Server herzustellen.
// default TCP socket created but no server connection
TcpClient ();
// create TcpClient with given TCP socket file descriptor
TcpClient ( const int filedescriptor);
// TcpClient connected to a TcpServer IP/port
TcpClient ( const std::string& ipAddr, const uint16_t port);
Erstellen Sie einen SSL-TCP-Server zum Akzeptieren von SSL-TCP-Clients.
// Create a SSL TCP Server not bound to IP/port
SecureTcpServer ( const std::string& keyFile, const std::string& certFile);
// Create a SSL TCP Server bound to a given port and IP or default IP
SecureTcpServer ( const std::string& keyFile, const std::string& certFile, const uint16_t port, const std::string& ipAddr = " 0.0.0.0 " );
Erstellen Sie einen SSL-TCP-Client für die Verbindung mit SSL-TCP-Servern.
// create a SSL TCP client with a given SSL context - used with SecureTcpServer::accept return
SecureTcpClient ( const int filedescriptor, SSL_CTX *sslctx);
// create a SSL TCP client connected to a SSL TCP server
SecureTcpClient ( const std::string& ipAddr, const uint16_t port);
// Client
// Connect to TCP server on IP 127.0.0.1 and port 54321
TcpClient client ( " 127.0.0.1 " , 54321 );
Erstellen Sie ein UDP-Serverobjekt zum Akzeptieren von UDP-Verbindungen.
// default no IP/port bound but UDP socket created
UdpServer ();
// UDP server socket created, IP/port bound
UdpServer ( const uint16_t port, const std::string &ipAddr = " 0.0.0.0 " );
Erstellen Sie ein UDP-Clientobjekt, um eine Verbindung zu einem bekannten UDP-Server herzustellen.
// default UDP socket created but no server connection
UdpClient ();
// UdpClient connected to a UdpServer IP/port
UdpClient ( const std::string& ipAddr, const uint16_t port) noexcept ( false )
Erstellen Sie einen SSL-UDP-Server zum Akzeptieren von SSL-UDP-Clients.
// Create a SSL UDP Server not bound to IP/port
SecureUdpServer ( const std::string& keyFile, const std::string& certFile);
// Create a SSL UDP Server bound to a given port and IP or default IP
SecureUdpServer ( const std::string& keyFile, const std::string& certFile, const uint16_t port, const std::string& ipAddr = " 0.0.0.0 " );
Erstellen Sie einen SSL-UDP-Client für die Verbindung zu SSL-UDP-Servern.
// Create a SSL UDP Client not attempting to connect to a SSL UDP Server (need to call SecureUdpClient::connect(IP, port) to connect)
SecureUdpClient ( const std::string& keyFile, const std::string& certFile);
// create a SSL UDP client connected to a given SSL UDP server waiting in a SecureUdpServer::accept call on the given IP and port
SecureUdpClient ( const std::string& ipAddr, const uint16_t port, const std::string& keyFile, const std::string& certFile);
Teilen Sie keines der Socket-Objekte über Threads hinweg, es sei denn, Sie stellen Ihre eigene Thread-Sicherheit für die Sende-/Lese- und Annahmeaufrufe bereit.
Verwenden Sie die Datei cppsocket.hpp
in Ihrem Quellbaum und fügen Sie sie in die Datei ein, die sie verwenden muss.
Mit ctest ausgeführte Unit-Tests:
ctest -C debug
Alle Beiträge werden sehr geschätzt.