Has anybody yet played around with LuaSocket’s ftp *put* feature (which transfers data from an iPhone to an ftp server)?
When using ftp.put on an actual iPhone device over WLAN, I am experiencing an awful lot of transmission errors - while other tools (such as Safari) seem to work fine as usual…
Does anybody else have some experiences in that area?
Kind regards,
Andreas Rozek [import]uid: 4331 topic_id: 851 reply_id: 300851[/import]
function mySourceFile(handle )
if handle then
local chunckSize = 4096;
return function()
local chunk = handle:read(chunckSize)
return chunk
end
end
end
==================================
local fileHandle = io.open(path,“r”);