Hi,
I've wrote a C++ program on windows (client-server) using gcc with following commands:
SOCKET(...)
bind(..)
select(..)
recv(..)
send(..)
close(..)
1- If I want to convert the application to use SSL3, what should I change? I need a general overview to get me started.
2- If I want to convert the application to Linux platform, I guess I'll use:
read()
write()
how to change that to use SSL3?
Thanks alot for your help!