about summary refs log tree commit diff stats
path: root/src/luasocket
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-21 15:55:52 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-21 15:55:52 -0800
commit5a484efe8c72a929382c96555a31129f8d2a55c8 (patch)
tree60f6b76e3c06dbc1bfb9fe9e978475256e8a8f6d /src/luasocket
parent3b44b9827d5e9c6554c5600c45d832d4e6eb50f8 (diff)
downloadteliva-5a484efe8c72a929382c96555a31129f8d2a55c8.tar.gz
https now working!
Still extremely ugly:
- I've inlined all the namespaces under ssl, so you need to know that
  context and config are related to ssl.
- luasec comes with its own copy of luasocket. I haven't deduped that
  yet.
Diffstat (limited to 'src/luasocket')
-rw-r--r--src/luasocket/http.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/luasocket/http.lua b/src/luasocket/http.lua
index bd04c1a..7356489 100644
--- a/src/luasocket/http.lua
+++ b/src/luasocket/http.lua
@@ -27,11 +27,7 @@ local SCHEMES = {
     , https = {
         port = 443
         , create = function(t)
-          local https = assert(
-            require("ssl.https"), 'LuaSocket: LuaSec not found')
-          local tcp = assert(
-            https.tcp, 'LuaSocket: Function tcp() not available from LuaSec')
-          return tcp(t) end }}
+            return https.tcp(t) end }}
 
 -- default scheme and port for document retrieval
 local SCHEME = 'http'