René's URL Explorer Experiment


Title: Cannot seem to get even one backend to be tried no matter what I do · Issue #43 · love2d/lua-https · GitHub

Open Graph Title: Cannot seem to get even one backend to be tried no matter what I do · Issue #43 · love2d/lua-https

X Title: Cannot seem to get even one backend to be tried no matter what I do · Issue #43 · love2d/lua-https

Description: Disclaimer, I am using Haiku. I repeat, Haiku. Not any Linux distro, but Haiku, a POSIX compliant OS that has some BSD compatibility headers and stuff. The output: Starting both http and https test trying all clients available whoops no ...

Open Graph Description: Disclaimer, I am using Haiku. I repeat, Haiku. Not any Linux distro, but Haiku, a POSIX compliant OS that has some BSD compatibility headers and stuff. The output: Starting both http and https test...

X Description: Disclaimer, I am using Haiku. I repeat, Haiku. Not any Linux distro, but Haiku, a POSIX compliant OS that has some BSD compatibility headers and stuff. The output: Starting both http and https test...

Opengraph URL: https://github.com/love2d/lua-https/issues/43

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Cannot seem to get even one backend to be tried no matter what I do","articleBody":"Disclaimer, I am using Haiku. I repeat, Haiku. Not any Linux distro, but Haiku, a POSIX compliant OS that has some BSD compatibility headers and stuff.\n\nThe output:\n```\nStarting both http and https test\ntrying all clients available\nwhoops no available clients \nsomething is seriously wrong if you don't see 'test...'\nnil     No applicable HTTPS implementation found\ntrying all clients available\nwhoops no available clients \nsomething is seriously wrong if you don't see 'test...'\nnil     No applicable HTTPS implementation found\n```\n\nCMake build log:\n```\n-- The CXX compiler identification is GNU 13.3.0\n-- Detecting CXX compiler ABI info\n-- Detecting CXX compiler ABI info - done\n-- Check for working CXX compiler: /bin/c++ - skipped\n-- Detecting CXX compile features\n-- Detecting CXX compile features - done\n-- Found LuaJIT: /system/develop/lib/libluajit-5.1.so\n-- Found CURL: /packages/curl-8.14.1-1/.self/develop/lib/libcurl.so (found version \"8.14.1\")\n-- Found OpenSSL: /packages/openssl3-3.5.4-1/.self/develop/lib/libcrypto.so (found version \"3.5.4\")\n-- Configuring done (0.5s)\n-- Generating done (0.2s)\n-- Build files have been written to: /boot/home/lua-https/build\n[  7%] Building CXX object src/CMakeFiles/https-common.dir/common/HTTPS.cpp.o\n[ 15%] Building CXX object src/CMakeFiles/https-common.dir/common/HTTPRequest.cpp.o\n[ 23%] Building CXX object src/CMakeFiles/https-common.dir/common/HTTPSClient.cpp.o\n[ 30%] Building CXX object src/CMakeFiles/https-common.dir/common/PlaintextConnection.cpp.o\n[ 38%] Linking CXX static library libhttps-common.a\n[ 38%] Built target https-common\n[ 46%] Building CXX object src/CMakeFiles/https-openssl.dir/generic/OpenSSLConnection.cpp.o\n[ 53%] Linking CXX static library libhttps-openssl.a\n[ 53%] Built target https-openssl\n[ 61%] Building CXX object src/CMakeFiles/https-curl.dir/generic/CurlClient.cpp.o\n[ 69%] Linking CXX static library libhttps-curl.a\n[ 69%] Built target https-curl\n[ 76%] Building CXX object src/CMakeFiles/https-unix-libraryloader.dir/generic/UnixLibraryLoader.cpp.o\n[ 84%] Linking CXX static library libhttps-unix-libraryloader.a\n[ 84%] Built target https-unix-libraryloader\n[ 92%] Building CXX object src/CMakeFiles/https.dir/lua/main.cpp.o\n[100%] Linking CXX shared module https.so\n[100%] Built target https\nInstall the project...\n-- Install configuration: \"Release\"\n-- Installing: /boot/home/lua-https/install/./https.so\n```\n\nldd results:\n```\ninstall/https.so:     file format elf64-x86-64\ninstall/https.so\n  NEEDED               libstdc++.so.6\n  NEEDED               libgcc_s.so.1\n  NEEDED               libroot.so\n  required from libgcc_s.so.1:\n  required from libstdc++.so.6:\n```\n\nI created a build script to make testing easier with all the extra CMake flags:\n```sh\n#!/bin/sh\nrm -rf build\n\ncmake \\\n\t-Bbuild -S. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PWD/install \\\n\t-DCMAKE_SYSTEM_NAME=Linux \\\n\t-DLUAJIT_DIR=/system/develop/headers/luajit-2.1/ \\\n\t-DLUAJIT_LIBRARY=/system/develop/lib/libluajit-5.1.so \\\n\t-DHTTPS_BACKEND_CURL=ON \\\n\t-DHTTPS_BACKEND_OPENSSL=ON \\\n\t-DUSE_CURL_BACKEND=ON \\\n\t-DUSE_OPENSSL_BACKEND=ON \\\n\ncmake --build build --target install\n\ncd install\necho Starting both http and https test\nluajit -e \"print(require 'https'.request 'http://myip.wtf/text')\"\nluajit -e \"print(require 'https'.request 'https://myip.wtf/text')\"\ncd ..\n\nobjdump -x install/https.so | grep \\\\.so # this is ldd on Linux\n```\nI also modified request:\n```\nHTTPSClient::Reply request(const HTTPSClient::Request \u0026req)\n{\n\n\tprintf(\"trying all clients available\\n\");\n\n\tfor (size_t i = 0; clients[i]; ++i)\n\t{\n\t\tHTTPSClient \u0026client = *clients[i];\n\t\tprintf(\"test... \");\n\n\t\tif (client.valid())\n\t\t\treturn client.request(req);\n\t}\n\n\tprintf(\"whoops no available clients \\n\");\n\tprintf(\"something is seriously wrong if you don't see 'test...'\\n\");\n\n\tthrow std::runtime_error(\"No applicable HTTPS implementation found\");\n}\n```\nRemoving `-DCMAKE_SYSTEM_NAME=Linux` had no changes.","author":{"url":"https://github.com/nilFinx","@type":"Person","name":"nilFinx"},"datePublished":"2026-01-31T06:59:02.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/43/lua-https/issues/43"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:dd5d2b89-22e7-73ca-e7a2-222f70f711f2
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD294:34AF85:55D5A:71C38:6A4C6A13
html-safe-nonce4abb20f6b6769e051e744b5132deaf0c220621e4c8f5a625c1551d38830c2f1a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEMjk0OjM0QUY4NTo1NUQ1QTo3MUMzODo2QTRDNkExMyIsInZpc2l0b3JfaWQiOiI1NjI4NTgyMDk2NjIyMzQ4ODE5IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac47d094027c092b15c9a2a6bb6ba0013f204df721d375651de980b3414cd6d9f6
hovercard-subject-tagissue:3878622258
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/love2d/lua-https/43/issue_layout
twitter:imagehttps://opengraph.githubassets.com/8119249559618179e7f8dcf3db81a92970f95662e86a1560c68b67590671be90/love2d/lua-https/issues/43
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/8119249559618179e7f8dcf3db81a92970f95662e86a1560c68b67590671be90/love2d/lua-https/issues/43
og:image:altDisclaimer, I am using Haiku. I repeat, Haiku. Not any Linux distro, but Haiku, a POSIX compliant OS that has some BSD compatibility headers and stuff. The output: Starting both http and https test...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamenilFinx
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/love2d/lua-https git https://github.com/love2d/lua-https.git
octolytics-dimension-user_id283107
octolytics-dimension-user_loginlove2d
octolytics-dimension-repository_id435158752
octolytics-dimension-repository_nwolove2d/lua-https
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id435158752
octolytics-dimension-repository_network_root_nwolove2d/lua-https
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release14099438da5379150f15a2892474c7c7e6c0e55e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/love2d/lua-https/issues/43#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Flove2d%2Flua-https%2Fissues%2F43
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Flove2d%2Flua-https%2Fissues%2F43
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=love2d%2Flua-https
Reloadhttps://github.com/love2d/lua-https/issues/43
Reloadhttps://github.com/love2d/lua-https/issues/43
Reloadhttps://github.com/love2d/lua-https/issues/43
Please reload this pagehttps://github.com/love2d/lua-https/issues/43
love2d https://github.com/love2d
lua-httpshttps://github.com/love2d/lua-https
Notifications https://github.com/login?return_to=%2Flove2d%2Flua-https
Fork 30 https://github.com/login?return_to=%2Flove2d%2Flua-https
Star 69 https://github.com/login?return_to=%2Flove2d%2Flua-https
Code https://github.com/love2d/lua-https
Issues 9 https://github.com/love2d/lua-https/issues
Pull requests 1 https://github.com/love2d/lua-https/pulls
Actions https://github.com/love2d/lua-https/actions
Projects https://github.com/love2d/lua-https/projects
Security and quality 0 https://github.com/love2d/lua-https/security
Insights https://github.com/love2d/lua-https/pulse
Code https://github.com/love2d/lua-https
Issues https://github.com/love2d/lua-https/issues
Pull requests https://github.com/love2d/lua-https/pulls
Actions https://github.com/love2d/lua-https/actions
Projects https://github.com/love2d/lua-https/projects
Security and quality https://github.com/love2d/lua-https/security
Insights https://github.com/love2d/lua-https/pulse
Cannot seem to get even one backend to be tried no matter what I dohttps://github.com/love2d/lua-https/issues/43#top
https://github.com/nilFinx
nilFinxhttps://github.com/nilFinx
on Jan 31, 2026https://github.com/love2d/lua-https/issues/43#issue-3878622258
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.