🎉 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!

Networking help!!!

Started by
0 comments, last by NinJinTsu 24 years, 1 month ago
Does anyone know how to make a game that has network support with IPX with Borland C++... Edited by - NinJinTsu on 5/26/00 4:47:43 PM
Advertisement
The easiest way (IMO) is to use WinSock 2 and use the IPX options on the sockets.
ex: an SPX socket:
spxSocket = socket(AF_IPX, SOCK_STREAM, NSPROTO_SPX);

ex: an IPX socket:
ipxSocket = socket(AF_IPX, SOCK_DGRAM, NSPROTO_IPX);

This topic is closed to new replies.

Advertisement