lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Quoting Diego Nehab <diego@tecgraf.puc-rio.br>:

> -    for _, v in methods do
> +    for _, v in pairs(methods)

> This is something that stopped working on Lua 5.1. Used to
> work on Lua 5.0.

Thanks for the hint.
Actually I find that "for _, v in pairs(methods) do" works OK.
The testsrvr + testclnt combination seems to work as expected
(to judge by the debug output messages).

Maybe someone can update luasockets.

Robert Dodier