SFML community forums

Help => Network => Topic started by: Gregory on September 10, 2013, 01:54:00 am

Title: Sockets Receive Buffer Queue
Post by: Gregory on September 10, 2013, 01:54:00 am
Hello guys. I'm studdyng to make a netowkr based game that will use UDP sockets. The server will be authoritative and will handle all the physics.

I'm planning the server to broadcast at 10hz, the physics will run in constant time-step of something like ~33ms or so (3 physics step for each broadcast step) this will run on a single thread.

To receive the clients information I was thinking to have all the sockets at NOblokingMode and when some socket has some information it puts the information on a queue that will be used at the nest physics simulation. This appear to be a good aproach? (I know about the UDP and the security layer I will need to implement above it).

My main question is: what is the size of the kernels internal socket queue? It is enought to store some data that can come in between each socket polling?

Thanks.
Gregory.



 

Title: Re: Sockets Receive Buffer Queue
Post by: zsbzsb on September 12, 2013, 01:53:31 pm
My main question is: what is the size of the kernels internal socket queue? It is enought to store some data that can come in between each socket polling?

There is no way to answer what the size of the kernel's socket queue is because it most likely varies across kernels. In the end, unless you run into problems you should focus on making your game and not worry about the depths of how kernels implement things.  ;)