user4749
user4749

Reputation: 441

Cross platform socket library - Android and IOS

I need to develop a few cross platform application(s). These applications require networking and simple UI but very complex math behind them. I have the math part as ANSI-C optimized fashion, the UI, I like to use Gideros or MOAI but for networking I am not so sure.

The LUA sockets is a good option but doesn't really exactly give me what I want so I am looking for a simple cross platform socket library where I can use and port both platforms without a lot of hassle. Are there any such library?

Upvotes: 2

Views: 1168

Answers (1)

cshu
cshu

Reputation: 5944

SDL_net runs on iOS & Android

The functions are a bit different from Berkeley sockets, e.g. SDLNet_CheckSockets is more limited compared with what select and poll offers.

Upvotes: 2

Related Questions