Posts: 2,843
Threads: 382
Joined: Jul 2012
Reputation:
0
Probably not, since I don't know how and TCP works well.
Posts: 823
Threads: 75
Joined: Apr 2011
Reputation:
0
I'm not sure how well TCP will scale as games become bigger/more complex/more demanding. I guess we'll cross the bridge when we get there.
Posts: 1,725
Threads: 105
Joined: Feb 2011
Reputation:
0
Noob, what is with you and UDP?
Posts: 823
Threads: 75
Joined: Apr 2011
Reputation:
0
The increased speed and reduced overhead of UDP overpowers its minimal unreliability. It's what games should use for packets sent very frequently. TCP is streaming and is designed for streaming data and media, not really games.
Posts: 1,725
Threads: 105
Joined: Feb 2011
Reputation:
0
I still have no idea what your talking about.
All I know is what the protocols do.
Posts: 5,683
Threads: 413
Joined: Aug 2012
Reputation:
0
05-08-2012, 01:19 AM
(This post was last modified: 05-08-2012, 01:19 AM by Whyrrak.)
From what I can gather,
UDP data sent: 10101 01011 10100 10101 X01X0 10011 10101
TCP data sent: 10110100101001010100101010101010101011101110100
Posts: 5,683
Threads: 413
Joined: Aug 2012
Reputation:
0
So more like
UDP data sent: 10101 01011 10100 10101 XXXXX 10011 10101
TCP data sent: 10110100101001010100101010101010101011101110100
With the XXXXX'd one only happening rarely.