Skip to content

Commit

Permalink
MATRIX.md: note nginx/curl versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ctz committed May 1, 2024
1 parent 0278426 commit 80d5a4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion rustls-libssl/MATRIX.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
| Symbol | curl | nginx | implemented? |
| Symbol | curl[^curl] | nginx[^nginx] | implemented? |
|---|---|---|---|
| `BIO_f_ssl` | :white_check_mark: | | :white_check_mark: |
| `BIO_new_buffer_ssl_connect` | | | |
Expand Down Expand Up @@ -542,3 +542,5 @@
[^tls1_1_method]: TLS 1.1-specific
[^tls1_2_method]: TLS 1.2-specific
[^engine]: openssl ENGINE-specific
[^curl]: curl 7.81.0-1ubuntu1.16 (ubuntu 22.04)
[^nginx]: nginx 1.18.0-6ubuntu14.4 (ubuntu 22.04)
6 changes: 4 additions & 2 deletions rustls-libssl/admin/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def read_impls():
TLS_method
""".split())

print('| Symbol | curl | nginx | implemented? |')
print('| Symbol | curl[^curl] | nginx[^nginx] | implemented? |')
print('|---|---|---|---|')
for i in sorted(items.keys()):
print('| `' + i + '` ' + flags(items[i]) + ' | ' + curl_p(i) + ' | ' + nginx_p(i) + ' | ' + impl_p(i) + ' |')
Expand All @@ -237,4 +237,6 @@ def read_impls():
[^tls1_method]: TLS 1.0-specific
[^tls1_1_method]: TLS 1.1-specific
[^tls1_2_method]: TLS 1.2-specific
[^engine]: openssl ENGINE-specific""")
[^engine]: openssl ENGINE-specific
[^curl]: curl 7.81.0-1ubuntu1.16 (ubuntu 22.04)
[^nginx]: nginx 1.18.0-6ubuntu14.4 (ubuntu 22.04)""")

0 comments on commit 80d5a4b

Please sign in to comment.