Lua networking libraries

Started by
3 comments, last by rpiller 10 years, 4 months ago

Does anyone know of any crossplatform Lua networking libraries?

I once exposed RakNet to Lua via a DLL, but it sounded like mobile apps don't play nice with DLL type (custom external libraries)? I didn't find anything via google, but maybe someone knows of a not so well known Lua lib?

Advertisement

you obviously don't know how to google.

http://lua-users.org/wiki/LibrariesAndBindings

http://w3.impa.br/~diego/software/luasocket/

http://leafo.net/lua-enet/

No need to be a smart guy about it. Those seem to use dlls which I talk about in my question. I got raknet integrated without dlls so all good.

If you have the source code, using a DLL versus linking statically is almost no difference -- just a small matter of makefile differences, and perhaps a different load-into-LUA routine. The amount of massaging needed should be minimal in all of those cases.

enum Bool { True, False, FileNotFound };

Thanks. I just included all the source files into my main project. It's what RakNet recommends it seems.

This topic is closed to new replies.

Advertisement