I want to write client socket application using c,c++ language on windows platform on vc++(vc++ console application or win32 static library).
i dont want to use any Winsock API or MFC class for creating and connecting socket.
because when i create socket using winsock API and after that if i use
SSL_read() on the fd retured by winsock API, then it will not working.

for simplicity,
IS it possible to write openssl -based client socket application using c,c++ on windows-vc++ platform without using any winsock class and MFC class
if possible then what i have to do
(1) what openssl version i have to use for windows
(2) what API i have to use for creating socket,connecting socket, reading data and writing data.

right now i m creating socket like this in window using vc++ . I m using window XP

int sock  = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) I think in window socket() is defined in winsock.h
 now i how i use SSL functionality.
whethere SSL_read() support fd return by WINSOCK API socket. if not then what is the solution.I heard that winsock doest not support for SSL
is there any third party lib i have to use or i have to write my own SSL lib API

 

Regards,

Amit

 



Explore your hobbies and interests. Click here to begin. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]

Reply via email to