mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-07-12 22:03:31 +02:00
Fine tunned modules scheme.
Adjusted client modules. Fixed proxy bug in http.
This commit is contained in:
3
test/dicttest.lua
Normal file
3
test/dicttest.lua
Normal file
@ -0,0 +1,3 @@
|
||||
local dict = require"socket.dict"
|
||||
|
||||
for i,v in dict.get("dict://localhost/d:banana") do print(v) end
|
@ -1,5 +1,5 @@
|
||||
-- load tftpclnt.lua
|
||||
local tftp = require("tftp")
|
||||
local tftp = require("socket.tftp")
|
||||
|
||||
-- needs tftp server running on localhost, with root pointing to
|
||||
-- a directory with index.html in it
|
||||
|
@ -1,5 +1,5 @@
|
||||
local socket = require("socket")
|
||||
socket.url = require("url")
|
||||
socket.url = require("socket.url")
|
||||
dofile("testsupport.lua")
|
||||
|
||||
local check_build_url = function(parsed)
|
||||
|
Reference in New Issue
Block a user