• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:20
CEST 10:20
KST 17:20
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Maestros of the Game: Live Finals Preview (RO4)4TL.net Map Contest #21 - Finalists4Team TLMC #5: Vote to Decide Ladder Maps!0[ASL20] Ro8 Preview Pt1: Mile High15Team TLMC #5 - Finalists & Open Tournaments2
Community News
herO joins T121Artosis vs Ret Showmatch47Classic wins RSL Revival Season 22Weekly Cups (Sept 15-21): herO Goes For Four2SC2 5.0.15 PTR Patch Notes + Sept 22nd update293
StarCraft 2
General
SC2 5.0.15 PTR Patch Notes + Sept 22nd update Had to smile :) Maestros of the Game: Live Finals Preview (RO4) herO joins T1 Storm change is a essentially a strict buff on PTR
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris SC2's Safe House 2 - October 18 & 19 Master Swan Open (Global Bronze-Master 2) Sparkling Tuna Cup - Weekly Open Tournament Prome's Evo #1 - Solar vs Classic (SC: Evo)
Strategy
Custom Maps
External Content
Mutation # 492 Get Out More Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense
Brood War
General
Thoughts on rarely used units Artosis vs Ret Showmatch ASL20 General Discussion StarCraft 1 Beta Test (Video) ASL 20 Soundtrack
Tourneys
Azhi's Colosseum [ASL20] Ro8 Day 2 [ASL20] Ro8 Day 1 [Megathread] Daily Proleagues
Strategy
Current Meta I am doing this better than progamers do. Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Liquipedia App: Now Covering SC2 and Brood War! Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The Big Programming Thread Trading/Investing Thread
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Movie Discussion! Anime Discussion Thread [Manga] One Piece
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List BarCraft in Tokyo Japan for ASL Season5 Final
Blogs
[AI] Sorry, Chill, My Bad :…
Peanutsc
Try to reverse getting fired …
Garnet
[ASL20] Players bad at pi…
pullarius1
Customize Sidebar...

Website Feedback

Closed Threads



Active: 586 users

Some notes regarding SC2 networking - Page 2

Forum Index > SC2 General
167 CommentsPost a Reply
Prev 1 2 3 4 5 7 8 9 Next All
asdfTT123
Profile Blog Joined June 2009
United States989 Posts
March 24 2010 20:59 GMT
#21
Great write-up, many thanks!
n.Die_Jaedong <3
psyote
Profile Blog Joined January 2008
Germany15 Posts
March 24 2010 20:59 GMT
#22
So does the server do anything more than just relaying the packets send from one client to the other?

I guess if the server does more like computing and storing lot of state it would not scale very good and require lots of ressources.

What about the annoncement that there will be LAN Latency if 2 clients are in the same network?
In this scenario there could not be a need for a server during the game.
R1CH
Profile Blog Joined May 2007
Netherlands10341 Posts
Last Edited: 2010-03-24 21:17:27
March 24 2010 21:15 GMT
#23
On March 25 2010 05:55 mgj wrote:

Improving Latency

I just want to attach a link for the curious: http://en.wikipedia.org/wiki/Nagle's_algorithm

This is actually unrelated to nagling. I didn't mention nagling at all because currently there is no way to force it on or off for a specific program and disabling nagling globally would have serious impacts to TCP performance if the application didn't expect it. Nagling can be controlled by the application via use of the TCP_NODELAY socket option.

I have a program I made to analyze the benefit of nagling by tracking the amount of send calls vs bytes sent, I just played a game of SC2 and verified that SC2 does indeed disable nagling by itself.
AdministratorTwitter: @R1CH_TL
Skaff
Profile Joined February 2010
United States240 Posts
March 24 2010 21:23 GMT
#24
I am curious what protocol you would assume SC2 could use over TCP? UDP could be used, but in general it is not considered as reliable. There is no real "connection" made and there is no sense of confirmation if packets sent have been received (or received in order). A lot of this stuff is very important when dealing with games

I assume you would the UDP protocol or some type of connection based layer on top of the UDP protocol? The big thing with TCP is that it adds some overhead to ensure that packets sent are received. I see a RTS being a game heavly based in the player input. The actions that are made are 100% necessary to ensure the same results are happening on both ends of the connection.

I will try to use an example of a RTS vs a FPS. In a FPS, obviously user input is still big. It impacts everything in the game. However sometimes lag occurs and players end up warping around. To the best of my knowledge this is the client getting forced updated by where the character "should" be relative to the rest of the players. This is also very powerful if you are the host in these games since you will know where everyone is with 100% accuracy!

In a RTS, you can have a ton of units. Generally all the commands need to be ensured that they are being sent to your peers and are arriving in the proper order. I have seen some personal RTS projects developed by some friends that had some real weak networking implementation. Either some lag would happen at some point and the game end up splitting into two different versions of the "same" game. The commands would be sent and the updates would be made based upon what was currently going on with the other clients (have to remember this is an example of a student and not a professional).

All in all... I figure Blizzard knows what they are doing in this regard. I can only speculate to the reasons why because I am no expert in the network protocols or network programming. One fun read if you are interested about some "high concepts" of TCP vs UDP can be found here (http://gafferongames.com/networking-for-game-programmers/udp-vs-tcp/).
VTArlock
Profile Blog Joined December 2009
United States1763 Posts
March 24 2010 21:30 GMT
#25
I understand absolutely none of this tech talk, but if its going to help me micro.. I'm all for it
+1 for I love r1ch
Why?
theqat
Profile Blog Joined March 2008
United States2856 Posts
March 24 2010 21:31 GMT
#26
Skaff I'm not sure you understand who R1CH is
mgj
Profile Blog Joined March 2010
191 Posts
Last Edited: 2010-03-24 21:40:15
March 24 2010 21:33 GMT
#27
R1CH: I have a program I made to analyze the benefit of nagling by tracking the amount of send calls vs bytes sent, I just played a game of SC2 and verified that SC2 does indeed disable nagling by itself.


Cool, had no idea. Disregard my link everyone.

Skaff I'm not sure you understand who R1CH is

R1CH is obviously a clever guy, but i really dont agree with this mentality. If you disagree with him, why hold back because of his status on the site? He seems like a reasonable guy, the worst thing that could happen is a good discussion where both parties end up understanding the issue better.

edit: Need to figure out how to include usernames in quotes =P
stenole
Profile Blog Joined April 2004
Norway868 Posts
March 24 2010 21:36 GMT
#28
If you use UDP, you won't just send the same information as with TCP and expect it to work. You would program your own network code to deal with acknowledge and resending packets in order to get information there as reliable as possible while still keeping within set deadline limits.
mgj
Profile Blog Joined March 2010
191 Posts
Last Edited: 2010-03-24 21:43:16
March 24 2010 21:42 GMT
#29
edit: Not really relevant for this thread.
Excalibur_Z
Profile Joined October 2002
United States12237 Posts
March 24 2010 21:49 GMT
#30
On March 25 2010 06:31 theqat wrote:
Skaff I'm not sure you understand who R1CH is


I know who he is (goony goon goonerson) but that doesn't necessarily make him 100% right. Skaff brings up some good points that, while admittedly already addressed in R1CH's post, have some merit.

By the way, Skaff, SC supported UDP so to some extent it's the application's management of the netcode that matters as much as the protocol you decide to use.
Moderator
R1CH
Profile Blog Joined May 2007
Netherlands10341 Posts
Last Edited: 2010-03-24 21:51:27
March 24 2010 21:49 GMT
#31
On March 25 2010 06:36 stenole wrote:
If you use UDP, you won't just send the same information as with TCP and expect it to work. You would program your own network code to deal with acknowledge and resending packets in order to get information there as reliable as possible while still keeping within set deadline limits.

Exactly right. If a packet containing a position update was lost, why wait and retransmit it if the next update contains a new transmission? If a unit command is lost, with the right coding you can isolate that very quickly and in fact retransmit faster than if it happened with TCP. UDP also performs better when data bursting since you don't run into issues such as the send or receive window sizes. You can have packets arrive out of order and reassemble them and even make use of partial date without waiting for the other fragments. UDP essentially lets you build your own protocol with exactly the amount of reliability and features you need rather than being confined to the features of TCP.

Skaff I'm not sure you understand who R1CH is

I don't like this attitude either, I'm not perfect - I thought SC2 used UDP until very recently when I bothered to actually get some packet analysis done. I can and will be wrong and it's important to question things.
AdministratorTwitter: @R1CH_TL
NonY
Profile Blog Joined June 2007
8751 Posts
March 24 2010 21:50 GMT
#32
Thanks R1CH. I love having some idea of how stuff works.
"Fucking up is part of it. If you can't fail, you have to always win. And I don't think you can always win." Elliott Smith ---------- Yet no sudden rage darkened his face, and his eyes were calm as they studied her. Then he smiled. 'Witness.'
Jsanko
Profile Joined March 2010
Slovakia120 Posts
March 24 2010 22:08 GMT
#33
Great post
Mineralzzzzz...
Marradron
Profile Blog Joined January 2009
Netherlands1586 Posts
March 24 2010 22:17 GMT
#34
Rich, you claim sc2 is server based. Yet then how does AI work ? since there are hacked versions of sc2 with difrent AI ? is the server just a medium to send data from player to player ?
Marradron
Profile Blog Joined January 2009
Netherlands1586 Posts
March 24 2010 22:20 GMT
#35
BTW another post (A)

could it be that blizzard is only doing the server thing for Beta so they can gather all data from games and basicly have acces to all replays ?
ven
Profile Blog Joined December 2008
Germany332 Posts
March 24 2010 22:24 GMT
#36
On March 25 2010 05:00 R1CH wrote:
"Drop hacks" / Lag
Since other players also connect to Blizzard's server, not you, there is no way to be "drop hacked" in SC2. Drop hacking involves terminating the connection to the other player via some means - trivial in BW since both players are connected to each other - desynchronize the connection and you get a drop. However in SC2, since you are only connected to Blizzard's server, not the other player, the most you can do is disconnect yourself from the server, causing you to drop. Since the server knows who disconnected, it can award the win to the remaining player.

Note that this does not preclude any bugs in SC2 that might allow someone to purposefully cause a drop condition by sending malformed packets that crash the server (thus dropping everyone), but given the server architecture, drop hacking should not be an issue in SC2 provided the servers are reliable and well-coded.

There should be a little bit more emphasis on the second paragraph. Warcraft 3's Battle.net worked the same way and they had a lot of issues with disconnect hacks and even crash hacks. Some of which got fixed only very recently. While it's a lot harder to do with a client/server architecture and Blizzard probably learned a lot from Warcraft 3, I don't think it's as safe as you make it sound.
You can reach the rainbow. I'll be there to help.
Adeeler
Profile Blog Joined June 2009
United Kingdom764 Posts
March 24 2010 22:30 GMT
#37
Nice post but Blizzard need to make a blue post or something properly telling us these same things also about the drop hacks/dropping situation.

Map Hacking, yes it "can" be a complex issue but no it is far easier to program in extremely extremely difficult to decode data containing all the data about things in a game then non-programmers understand. Something may sound complex to the layman but usually its so simple when you get down to the actual coding its shocking its not been sorted before now especially given Blizzards ambitions for SC2.
R1CH
Profile Blog Joined May 2007
Netherlands10341 Posts
March 24 2010 22:56 GMT
#38
On March 25 2010 07:24 ven wrote:
There should be a little bit more emphasis on the second paragraph. Warcraft 3's Battle.net worked the same way and they had a lot of issues with disconnect hacks and even crash hacks. Some of which got fixed only very recently. While it's a lot harder to do with a client/server architecture and Blizzard probably learned a lot from Warcraft 3, I don't think it's as safe as you make it sound.

I would hope they have proper input validation figured out by now, it's not rocket science.
AdministratorTwitter: @R1CH_TL
calcarus
Profile Joined March 2010
Australia103 Posts
March 24 2010 23:02 GMT
#39
Interesting stuff, i wish i payed more attention in networking at uni
"All I know, is that I know nothing" - Socrates
DeCoup
Profile Joined September 2006
Australia1933 Posts
March 24 2010 23:06 GMT
#40
I just performed the registry change recommended by r1ch in the OP. It has reduced around half-1 second off my latency (by feel). TYVM! I'm in AU.
"Poor guy. I really did not deserve that win. So this is what it's like to play Protoss..." - IdrA
Prev 1 2 3 4 5 7 8 9 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 1h 40m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
NeuroSwarm 162
UpATreeSC 36
StarCraft: Brood War
firebathero 4184
Larva 485
EffOrt 142
Dewaltoss 77
Sacsri 73
soO 43
Noble 36
Hm[arnc] 4
Dota 2
ODPixel217
XcaliburYe34
League of Legends
JimRising 501
Counter-Strike
Stewie2K865
Super Smash Bros
Mew2King89
Westballz17
Other Games
summit1g8419
crisheroes390
XaKoH 176
SortOf56
ArmadaUGS19
Organizations
Other Games
gamesdonequick477
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• Berry_CruncH218
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo612
Upcoming Events
Replay Cast
1h 40m
BSL Team Wars
10h 40m
Team Bonyth vs Team Sziky
BSL
13h 10m
Artosis vs Sziky
Afreeca Starleague
1d 1h
Soma vs BeSt
Wardi Open
1d 2h
OSC
1d 15h
Sparkling Tuna Cup
2 days
Afreeca Starleague
2 days
Bisu vs Larva
LiuLi Cup
3 days
OSC
3 days
[ Show More ]
The PondCast
4 days
Wardi Open
5 days
[BSL 2025] Weekly
6 days
[BSL 2025] Weekly
6 days
Safe House 2
6 days
Liquipedia Results

Completed

Proleague 2025-09-25
Maestros of the Game
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
EC S1
ESL Pro League S22
FERJEE Rush 2025
Birch Cup 2025
DraculaN #2
LanDaLan #3
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

IPSL Winter 2025-26
SC4ALL: Brood War
BSL 21 Team A
BSL Season 21
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
WardiTV TLMC #15
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
Frag Blocktober 2025
Urban Riga Open #1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.