* TcpTransportServer.
*/
protected TcpTransportServer createTcpTransportServer(final URI uri, final Map<String, String> options) throws Exception {
String protocol = protocol(uri.getScheme());
if( protocol!=null ) {
return new SslTransportServer(uri){
@Override
protected TcpTransport createTransport() {
TcpTransport transport = super.createTransport();
IntrospectionSupport.setProperties(transport, new HashMap(options));
return transport;