• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

TCP vs UDP

well for starters, tcp is connection based meaning before transmission can occur a connection must be established at first. while udp is connection less, you just send/receive data from a port directly. tcp is also more reliable i believe.
 
UDP doesn't check for missing/corrupted data. TCP does. UDP is faster, but TCP is more accurate.
 
Back
Top