Bar Hofesh
Bar Hofesh
## ScudCloud Version ``` ScudCloud 1.65 Python 3.7.0 Qt 5.11.1 WebKit 602.1 PyQt 5.11.2 SIP 4.19.12 ``` ## Distro and Desktop info - Distribution: Arch Linux - Version/Release: (rolling release)...
@datanoise @asterite What do you guys think about instead of doing ``` crystal tcp_server = TCPServer.new(443) client = tcp_server.accept OpenSSL::SSL::Socket.new_server(client, context) do |ssl_server| ``` To do it like Ruby ```...
Is there a way we can achieve something like this: http://ruby-doc.org/stdlib-1.9.3/libdoc/openssl/rdoc/OpenSSL/SSL/SSLContext.html#method-i-ciphers ?
@datanoise When would you feel the repo is at a good enough stage to be integrated back to crystal ? Right now most of my tests shows everything is working...
That can be really nice for developer who do not know much about SSL\TLS Using TLS_method as the default should be considered responsible. See here: https://www.openssl.org/docs/ssl/SSL_CTX_new.html ``` SSLv23_method(void), SSLv23_server_method(void), SSLv23_client_method(void)...
Maybe instead of returning an exception is is better to return this in the status ? as in: ``` ruby job.status => :job_not_found ```
Hi :) Now that crystal has support for not generating `main` , would it be easier to do this with less steps ?
It seems only `new` and `send_message` are available, is there a way to easily add `get` or `read` messages?
As this is a stress testing tool, most tests will run locally in a lab against local servers which usually wont have valid ssl certificates, the tool should default (or...