🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

IPX anyone?

Started by
0 comments, last by DanJames 23 years, 11 months ago
In all of the (2) FAQs and tutorials I have read, they say that programming IPX is slightly different to TCP/IP, but they don''t say how. How?
Advertisement
Using DirectPlay:

Instead of creating a session using a TCP information block(forgot the term, trying hard to forget anything I ever learned about DPlay) You would specify IPX as the provider instead of TCP/IP

Using Winsock:

When creating a socket, you would do everything the same, but instead of using IPPROTO_TCP or IPPROTO_TCP and AF_INET, You would use the definitions for IPX/SPX. Keep in mind that IPX/SPX behave differently than TCP or UDP. They are stream sockets that preserve message boundaries.

Hope that helps,
Jon Stelly

This topic is closed to new replies.

Advertisement