-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding ability to manually override the cellid used for logging into …
…Steam
- Loading branch information
Showing
4 changed files
with
62 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,8 @@ public static bool DebugLogs | |
} | ||
} | ||
|
||
public static uint? CellIdOverride { get; set; } | ||
|
||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
# CDN Regions | ||
|
||
Valve maintains CDNs in various regions for Steam, which are identified internally as a `CellId`. This is a list of the currently known CDN regions for Steam, pulled directly from the **Content Server Directory Service**. | ||
|
||
The **Download Region** setting in Steam will display a large number of regions, however the majority of them do not exist. The only ones that exist are the ones included in this page. In addition, setting an override region will have no effect on which download region your client will use. Steam will always determine which download region to serve you from, based on some unknown geo-location criteria. | ||
|
||
![docker no command](images/download-region-settings.png){: style="height:430px"} | ||
|
||
Please note that this list is non-exhaustive, and likely inaccurate, as Valve may potentially change them in the future. | ||
|
||
| Cell Id | Short | City | | ||
|---------|-------|-------------------| | ||
| 0 | | **Use Geolocation** | | ||
| 1 | ord | Chicago | | ||
| 4 | lhr | London | | ||
| 5 | fra | Frankfurt | | ||
| 14 | par | Paris | | ||
| 15 | ams | Amsterdam | | ||
| 25 | gru | Sao Paulo | | ||
| 31 | sea | Seattle | | ||
| 32 | tyo | Japan | | ||
| 33 | hkg | Hong Kong | | ||
| 35 | sgp | Singapore | | ||
| 38 | waw | Poland | | ||
| 40 | mad | Madrid | | ||
| 50 | atl | Atlanta | | ||
| 52 | syd | Sydney | | ||
| 63 | iad | Washington, DC | | ||
| 64 | lax | Los Angeles | | ||
| 65 | dfw | Dallas Fort-Worth | | ||
| 66 | sto | Stockholm | | ||
| 92 | vie | Vienna | | ||
# CDN Regions | ||
|
||
!!! Note | ||
As of 2024-10-04 it appears that it is no longer possible to choose a CDN region in Steam. It is however still possible to choose a region for logging into Steam. | ||
|
||
Valve maintains CDNs in various regions for Steam, which are identified internally as a `CellId`. This is a list of the currently known CDN regions for Steam, pulled directly from the **Content Server Directory Service**. | ||
|
||
The **Download Region** setting in Steam will display a large number of regions, however the majority of them do not exist. The only ones that exist are the ones included in this page. In addition, setting an override region will have no effect on which download region your client will use. Steam will always determine which download region to serve you from, based on some unknown geo-location criteria. | ||
|
||
![download region](images/download-region-settings.png){: style="height:430px"} | ||
|
||
Please note that this list is non-exhaustive, and likely inaccurate, as Valve may potentially change them in the future. | ||
|
||
| Cell Id | Short | City | | ||
|---------|-------|-------------------| | ||
| 0 | | **Use Geolocation** | | ||
| 1 | ord | Chicago | | ||
| 4 | lhr | London | | ||
| 5 | fra | Frankfurt | | ||
| 14 | par | Paris | | ||
| 15 | ams | Amsterdam | | ||
| 25 | gru | Sao Paulo | | ||
| 31 | sea | Seattle | | ||
| 32 | tyo | Japan | | ||
| 33 | hkg | Hong Kong | | ||
| 35 | sgp | Singapore | | ||
| 38 | waw | Poland | | ||
| 40 | mad | Madrid | | ||
| 50 | atl | Atlanta | | ||
| 52 | syd | Sydney | | ||
| 63 | iad | Washington, DC | | ||
| 64 | lax | Los Angeles | | ||
| 65 | dfw | Dallas Fort-Worth | | ||
| 66 | sto | Stockholm | | ||
| 92 | vie | Vienna | |