diff options
| author | Steven Fackler <[email protected]> | 2015-04-08 23:52:09 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-04-08 23:52:09 -0400 |
| commit | 11059e1b2dd4077fa2fd433f9d7d04da1cf175c6 (patch) | |
| tree | ca92efe9faf168a5393b32205d6c22cf8aad84d1 /README.md | |
| parent | Release v0.6.0 (diff) | |
| parent | Use latest openssl library (v1.0.2) (diff) | |
| download | rust-openssl-11059e1b2dd4077fa2fd433f9d7d04da1cf175c6.tar.xz rust-openssl-11059e1b2dd4077fa2fd433f9d7d04da1cf175c6.zip | |
Merge pull request #179 from manuels/dtls
DTLS support
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -63,7 +63,7 @@ rust-openssl directory. Then run one of the following commands: * Windows: `openssl s_server -accept 15418 -www -cert test/cert.pem -key test/key.pem > NUL` -* Linux: `openssl s_server -accept 15418 -www -cert test/cert.pem -key +* Linux: `openssl s_server -accept 15418 -www -cert test/cert.pem -key \ test/key.pem >/dev/null` Then in the original terminal, run `cargo test`. If everything is set up @@ -71,4 +71,7 @@ correctly, all tests should pass. You might get some warnings in the `openssl s_server` window. Those aren't anything to worry about. You can stop the server using Control-C. +For DTLS testing each test requires its own instance of OpenSSL's s_server. On +Linux you can run the bash script in `openssl/tests/test.sh`. + [1]: http://slproweb.com/products/Win32OpenSSL.html |