If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
anyone knows an easy to use UDP Socket example. can be a framework too. i found AGSocket. Can anyone provide an example for this one? (send and receive?) thanks
anyone knows an easy to use UDP Socket example. can be a framework too. i found AGSocket. Can anyone provide an example for this one? (send and receive?) thanks
The only experience I've have with sockets is in college, and we used the C implementation. Check the man pages for socket ("man socket"). UDP is implemented with the socket type SOCK_DGRAM and the "domain" is AF_INET (I believe). If you need any help with sockets in general, do a search on the web--there's some good examples out there.