class IO::Endpoint::SSLEndpoint

def build_context(context = ::OpenSSL::SSL::SSLContext.new)

def build_context(context = ::OpenSSL::SSL::SSLContext.new)
	if params = self.params
		context.set_params(params)
	end
	
	# context.setup
	# context.freeze
	
	return context
end