1. Help Wanted:Networking Lib
- Posted by euphoric (admin) Aug 07, 2009
- 1203 views
- Last edited Aug 08, 2009
I need help creating a library for easy chat program or game networking using the standard lib's sockets.e. There is an example client and server program in demo/, but I'm not sure how to incorporate the functionality into a networking engine for use in a game program.
Anybody willing and able to help with this?
2. Re: Help Wanted:Networking Lib
- Posted by jeremy (admin) Aug 07, 2009
- 1212 views
- Last edited Aug 08, 2009
There are actually two demo combinations in the demo directory. One is a simple sock_client/sock_server pair but the other is chat_server and chat_client. The chat_server can support many chat_clients and what one chat_client sends to the server is then sent to all connected clients via the server.
You may want to investigate the chat combo. It seems like it's up your alley.
Jeremy
3. Re: Help Wanted:Networking Lib
- Posted by euphoric (admin) Aug 07, 2009
- 1203 views
- Last edited Aug 08, 2009
You may want to investigate the chat combo. It seems like it's up your alley.
Ah, I missed that one. Thanks Jeremy.