How to scheme where: - Client is on C# side (sending request to server) - Server is on C++ side (Linux) (responding to client request and closing)
And communication between that nodes are via TCP, i want to apply SSL encryption and compression methods, I don't worry about C# side but i don't want code much in C++.
Is any fast way to add encryption and compression layer to that communication or pack/encapsulate that communication into other communication with encryption and compression?
Thanks!