Lines Matching refs:server
1 # TCP client/server API for C++ (with SSL/TLS support)
6 This is a simple TCP server/client for C++. Under Windows, it wraps WinSock and under Linux it wrap…
7 the related socket API (BSD compatible). It wraps also OpenSSL to create secure client/server socke…
9 It is meant to be a portable and easy-to-use API to create a TCP server or client with or without S…
21 Create a server or client object and provide to its constructor a callable object (for log printing)
40 CTCPServer TCPServer(LogPrinter, "12345"); // creates a TCP server to listen on port 12345
43 CTCPSSLServer SecureTCPSSLServer(LogPrinter, "4242"); // creates an SSL/TLS TCP server to listen on…
61 …onnectedClient, 1000); // waits for 1 second. Will return true, if a client connected to the server
64 To connect to a particular server (e.g 127.0.0.1:669)
83 To send/receive data to/from a server :
96 To disconnect from server or client side :
116 // client socket managed by a server
144 Before listenning for incoming SSL/TLS connections, you have to set the server's certificate and pr…
160 IMPORTANT: In the SSL/TLS server, ASecureSocket::SSLSocket objects must be disconnected with SSL/TL…