> I have a server that receive TCP connections. Actually I'm using it > with SSL connections, but I want to use simple TCP connections when > client peer is not using SSL connections. To detect that the client is > not using SSL i´m using SSL.Enabled property, i tried to use > SSLDoShutdown method, but maybe I'm missing to do something else.
When you have not enabled SSL, then you cannot shutdown SSL, of course! ;-) However you are on the wrong way. See how is this solved in standard protocols: - Start as normal TCP connenction - if client wish, then it send command for upgrade to SSL Remember: starting of SSl sending data through TCP, it may confuse non-SSL client! It is reason, why SSL is started on request. -- Lukas Gebauer. E-mail: [EMAIL PROTECTED] http://synapse.ararat.cz/ - Ararat Synapse - TCP/IP Lib. ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ synalist-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/synalist-public
