Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
71 views

How to know if a value is a luasocket object?

I've noticed that luasocket doesn't seem to provide a way to know if a value is a luasocket object or not. The usual approach of comparing metatables doesn't work, as different socket object types ...
2
votes
2answers
277 views

lua http socket timeout

The LuaSocket HTTP module documentation says that a timeout can be set on a HTTP connection: The following constants can be set to control the default behavior of the HTTP module: PORT: default port ...
2
votes
3answers
999 views

LuaSocket FTP always times out

I've had success with LuaSocket's TCP facility, but I'm having trouble with its FTP module. I always get a timeout when trying to retrieve a (small) file. I can download the file just fine using ...
1
vote
2answers
109 views

How to get Client IP in Lua Sockets

I'm having trouble locating how I go about getting the ip address of each client as they connect to my server, using LuaSockets; Also: I apologise if this has been answered in another post, but I ...
1
vote
2answers
235 views

How to detect and quick a lua function taking too long to respond?

I'm using Corona SDK to make a simple app that requires luasocket. Corona SDK support luasocket to do async http req. But I want to use UDP from luasocket. UDP receive() method from luasocket is ...
1
vote
1answer
46 views

Traversing Google searches using LuaSocket

I am trying to make a Lua program that creates a google search, and formats all of the results in a different arrangement. The only problem is that I cannot find a way to do these: get the html of ...
1
vote
2answers
179 views

LuaSocket socket/core.dll required location?

When I use local socket = require("socket.core") It works fine, the dll is located at "dir/socket/core.dll" but when I move the dll to say "dir/folder/core.dll" and use local socket = ...
1
vote
2answers
316 views

Lua http socket evaluation

I use lua 5.1 and the luaSocket 2.0.2-4 to retrieve a page from a web server. I first check if the server is responding and then assign the web server response to lua variables. local mysocket = ...
1
vote
2answers
305 views

How can a LuaSocket server handle several requests simultaneously?

The problem is the inability of my Lua server to accept multiple request simultaneously. I attempted to make each client message be processed in its on coroutine, but this seems to have failed. while ...
1
vote
2answers
392 views

How could I embedded socket in Lua internally, just like oslib, debuglib?

I want to implement the function like embedding the socket function in my Lua build. So I don't need to copy socket.core.dll any more (just for fun). I search the maillist, and see some guys discuss ...
0
votes
1answer
89 views

LuaSockets POST data issue [LUA]

I'm getting GET data without issue using: local get, err = client:receive() But I'm not sure how to receive POST data. I've tried: local get, err = client:receive('*a') But the ...