summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/unit/tls_ext_alpn.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make internal header file names consistenttb2022-11-261-2/+2
| | | | | | | | | | | | | | | | Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names used for internal headers. Move all these headers we inherited from OpenSSL to *_local.h, reserving the name *_internal.h for our own code. Similarly, move dtls_locl.h and ssl_locl.h to dtls_local and ssl_local.h. constant_time_locl.h is moved to constant_time.h since it's special. Adjust all .c files in libcrypto, libssl and regress. The diff is mechanical with the exception of tls13_quic.c, where #include <ssl_locl.h> was fixed manually. discussed with jsing, no objection bcook
* Revise for SSL_CTX_INTERNAL and SSL_INTERNAL removal.jsing2022-10-021-5/+5
|
* adjust alpn extension test to new argument ordertb2020-07-031-3/+3
|
* Update regress following TLS extension renaming.jsing2019-01-181-3/+3
|
* Update regress to use tlsext_serverhello_parse().jsing2018-02-081-5/+3
|
* Update regress to match removal of ssl_parse_clienthello_tlsext().jsing2018-01-271-5/+8
|
* Update the TLS ALPN unit tests to work with internal/opaque data.jsing2017-01-221-12/+9
|
* Revise regress for changes to ssl_parse_serverhello_tlsext().jsing2016-12-181-3/+3
| | | | Same diff from inoguchi@
* Add tests for parsing TLS extension ALPN (RFC 7301).doug2015-07-091-0/+444
The current libssl code does not pass these tests yet.