mas-bandwidth/yojimbo

Ignoring late packets

kingoftheconnors opened this issue · 1 comments

Does Yojimbo support a channel that ignores late packets? Like sending a player state, and if one packet comes in later than newer packets, it just gets dropped?

As GafferOnGames said in #178:

Yojimbo is just a library for you to define channels for communication, serialization for messages etc. It doesn't force you to any particular network model, although it has been designed with the needs of AAA games. You need to implement a playout delay buffer yourself.

After testing it I have confirmed, yojimbo doesn't intercept or try to affect out-of-order packets. If you think out-of-order UDP packets should be dropped, that's for you to implement!