Hello, I want to make my network connection encrypted/secure using ssh. At the moment I open a socket in my embedded device, so that an client (PC) is able to connect to it: //initialization of the socket handle = socket(AF_INET, SOCK_STREAM, 0); serv_addr.sin_family = AF_INET; serv_addr.sin_add.s_addr = htonl(INADDR_ANY); serv_addr.sin_port = htons(10001); bind(handle, &serv_adr, size_of(serv_adr)); listen(handle, 0); In my communication thread I have the functions - accept - read - write - close How is it possible to make my network secure via ssl and the sockets used in the sample code... Thank you very very much Manuel Sahm
- network connection encrypted/secure using ssl and sockets ?... Manuel Sahm
- Re: network connection encrypted/secure using ssl and ... Sergio
- Re: Re: network connection encrypted/secure using ... Manuel Sahm
- Re: Re: network connection encrypted/secure us... Ger Hobbelt
- Re: network connection encrypted/secure us... Geoff Thorpe
- Re: network connection encrypted/secu... Ger Hobbelt
- Re: Re: Re: network connection encrypted/s... Manuel Sahm
- Re: Re: Re: network connection encryp... Ger Hobbelt
- Re: network connection encrypted/secure using ... Sergio
- RE: network connection encrypted/secure us... David Schwartz
- Re: network connection encrypted/secure us... Dan_Mitton