นี่เป็นไฟล์ส่วนหัวเฉพาะการใช้งานไคลเอ็นต์/เซิร์ฟเวอร์ C++ ที่มีหรือไม่มี SSL/TLS/DTLS การใช้งานใช้ OpenSSL และ BSD API เพื่อใช้งานอินเทอร์เฟซซ็อกเก็ตพื้นฐาน
การรวบรวมได้รับการทดสอบด้วย:
คลาส sockect ฐานสำหรับวิธีคลาส BSD API
// 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);
สร้างวัตถุเซิร์ฟเวอร์ TCP สำหรับการยอมรับการเชื่อมต่อ TCP
// 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);
สร้างวัตถุไคลเอ็นต์ TCP เพื่อเชื่อมต่อกับเซิร์ฟเวอร์ TCP ที่รู้จัก
// 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);
สร้างเซิร์ฟเวอร์ SSL TCP สำหรับการยอมรับไคลเอนต์ SSL TCP
// 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 " );
สร้างไคลเอนต์ SSL TCP สำหรับการเชื่อมต่อกับเซิร์ฟเวอร์ SSL TCP
// 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 );
สร้างอ็อบเจ็กต์เซิร์ฟเวอร์ UDP เพื่อยอมรับการเชื่อมต่อ UDP
// 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 " );
สร้างวัตถุไคลเอ็นต์ UDP เพื่อเชื่อมต่อกับเซิร์ฟเวอร์ UDP ที่รู้จัก
// 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 )
สร้างเซิร์ฟเวอร์ SSL UDP เพื่อยอมรับไคลเอนต์ SSL UDP
// 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 " );
สร้างไคลเอนต์ SSL UDP สำหรับการเชื่อมต่อกับเซิร์ฟเวอร์ SSL UDP
// 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);
อย่าแชร์ออบเจ็กต์ซ็อกเก็ตใดๆ ข้ามเธรด เว้นแต่ว่าคุณได้จัดเตรียมความปลอดภัยของเธรดของคุณเองในการส่ง/อ่านและรับสาย
ใช้ไฟล์ cppsocket.hpp
ในแผนผังต้นทางของคุณและรวมไว้ในไฟล์ที่จำเป็นต้องใช้
การทดสอบหน่วยทำงานด้วย ctest:
ctest -C debug
ผลงานทั้งหมดได้รับการชื่นชมอย่างสูง