@@ -29,7 +29,7 @@ public ReadOnlyCollection<SteamApps.LicenseListCallback.License> Licenses
29
29
public Dictionary < uint , ulong > AppTokens { get ; } = [ ] ;
30
30
public Dictionary < uint , ulong > PackageTokens { get ; } = [ ] ;
31
31
public Dictionary < uint , byte [ ] > DepotKeys { get ; } = [ ] ;
32
- public ConcurrentDictionary < ( uint , string ) , TaskCompletionSource < SteamApps . CDNAuthTokenCallback > > CDNAuthTokens { get ; } = [ ] ;
32
+ public ConcurrentDictionary < ( uint , string ) , TaskCompletionSource < SteamContent . CDNAuthToken > > CDNAuthTokens { get ; } = [ ] ;
33
33
public Dictionary < uint , SteamApps . PICSProductInfoCallback . PICSProductInfo > AppInfo { get ; } = [ ] ;
34
34
public Dictionary < uint , SteamApps . PICSProductInfoCallback . PICSProductInfo > PackageInfo { get ; } = [ ] ;
35
35
public Dictionary < string , byte [ ] > AppBetaPasswords { get ; } = [ ] ;
@@ -291,7 +291,7 @@ public async Task<ulong> GetDepotManifestRequestCodeAsync(uint depotId, uint app
291
291
public async Task RequestCDNAuthToken ( uint appid , uint depotid , Server server )
292
292
{
293
293
var cdnKey = ( depotid , server . Host ) ;
294
- var completion = new TaskCompletionSource < SteamApps . CDNAuthTokenCallback > ( ) ;
294
+ var completion = new TaskCompletionSource < SteamContent . CDNAuthToken > ( ) ;
295
295
296
296
if ( bAborted || ! CDNAuthTokens . TryAdd ( cdnKey , completion ) )
297
297
{
@@ -300,7 +300,7 @@ public async Task RequestCDNAuthToken(uint appid, uint depotid, Server server)
300
300
301
301
DebugLog . WriteLine ( nameof ( Steam3Session ) , $ "Requesting CDN auth token for { server . Host } ") ;
302
302
303
- var cdnAuth = await steamApps . GetCDNAuthToken ( appid , depotid , server . Host ) ;
303
+ var cdnAuth = await steamContent . GetCDNAuthToken ( appid , depotid , server . Host ) ;
304
304
305
305
Console . WriteLine ( $ "Got CDN auth token for { server . Host } result: { cdnAuth . Result } (expires { cdnAuth . Expiration } )") ;
306
306
0 commit comments