Basaa
Basaa

Reputation: 141

SocketAsyncEventArgs? - simple example

As the progress of my XNA TopDown Shooter game continues, it's time to implement multiplayer functionality. Because the client and server will have to handle alot of data per second (60 packets per second with position, rotation and other player data) I have to make a stable and fast network system.

My question: What is the best option to create a very fast, high performance network connection between 1 server and multiple clients? If the answer is SocketAsyncEventArgs, do you know a simple, clean example somewhere on the internet of how to send and receive data using this advanced class? I can't seem to find a nice example that I understand.

Thanks for your time!

Bas

Upvotes: 3

Views: 2443

Answers (1)

Daniel Scroggins
Daniel Scroggins

Reputation: 21

here's a blog about it

http://socketeering.blogspot.com/

couple youtube videos in the links

Upvotes: 0

Related Questions