Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ExtendWindow()

void System.Net.Http.Http2Connection.ExtendWindow ( int amount)
inlineprivate

Definition at line 3015 of file Http2Connection.cs.

3016 {
3017 if (System.Net.NetEventSource.Log.IsEnabled())
3018 {
3019 Trace($"{"amount"}={amount}", "ExtendWindow");
3020 }
3023 {
3025 if (_pendingWindowUpdate < 8388608)
3026 {
3027 if (System.Net.NetEventSource.Log.IsEnabled())
3028 {
3029 Trace($"{"_pendingWindowUpdate"} {_pendingWindowUpdate} < {8388608}.", "ExtendWindow");
3030 }
3031 return;
3032 }
3035 }
3037 }
Task SendWindowUpdateAsync(int streamId, int amount)
override void Trace(string message, [CallerMemberName] string memberName=null)
static readonly System.Net.NetEventSource Log

References System.Net.Http.Http2Connection._pendingWindowUpdate, System.Net.NetEventSource.Log, System.Net.Http.HttpConnectionBase.LogExceptions(), System.Net.Http.Http2Connection.SendWindowUpdateAsync(), System.Net.Http.Http2Connection.SyncObject, and System.Net.Http.Http2Connection.Trace().

Referenced by System.Net.Http.Http2Connection.ProcessDataFrame().