mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
bb1ad4b649
This patch refreshes the openssl port and makes it build the utilities in apps/, e.g. the openssl utility. Now you can do this from Serenity: $ openssl s_client -connect example.org:443 ... GET / HTTP/1.1 Host: example.org <HTTP response here> The download URL was bit-rotten and needed a fix.
13 lines
327 B
Diff
13 lines
327 B
Diff
--- a/apps/ocsp.c 2020-04-05 16:49:54.499380971 +0100
|
|
+++ b/apps/ocsp.c 2020-04-05 16:50:13.175380426 +0100
|
|
@@ -94,6 +94,10 @@
|
|
# endif
|
|
# endif
|
|
|
|
+# if defined(OPENSSL_SYS_SERENITY)
|
|
+# include <sys/select.h>
|
|
+# endif
|
|
+
|
|
/* Maximum leeway in validity period: default 5 minutes */
|
|
# define MAX_VALIDITY_PERIOD (5 * 60)
|
|
|