You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Servers/Kestrel/Core/src/Http2Limits.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ public class Http2Limits
25
25
/// <summary>
26
26
/// Limits the number of concurrent request streams per HTTP/2 connection. Excess streams will be refused.
27
27
/// <para>
28
-
/// Value must be greater than 0, defaults to 100
28
+
/// Value must be greater than 0, defaults to 100.
29
29
/// </para>
30
30
/// </summary>
31
31
publicintMaxStreamsPerConnection
@@ -45,7 +45,7 @@ public int MaxStreamsPerConnection
45
45
/// <summary>
46
46
/// Limits the size of the header compression tables, in octets, the HPACK encoder and decoder on the server can use.
47
47
/// <para>
48
-
/// Value must be greater than or equal to 0, defaults to 4096
48
+
/// Value must be greater than or equal to 0, defaults to 4096.
49
49
/// </para>
50
50
/// </summary>
51
51
publicintHeaderTableSize
@@ -65,7 +65,7 @@ public int HeaderTableSize
65
65
/// <summary>
66
66
/// Indicates the size of the largest frame payload that is allowed to be received, in octets. The size must be between 2^14 and 2^24-1.
67
67
/// <para>
68
-
/// Value must be between 2^14 and 2^24, defaults to 2^14 (16,384)
68
+
/// Value must be between 2^14 and 2^24, defaults to 2^14 (16,384).
69
69
/// </para>
70
70
/// </summary>
71
71
publicintMaxFrameSize
@@ -85,7 +85,7 @@ public int MaxFrameSize
85
85
/// <summary>
86
86
/// Indicates the size of the maximum allowed size of a request header field sequence. This limit applies to both name and value sequences in their compressed and uncompressed representations.
87
87
/// <para>
88
-
/// Value must be greater than 0, defaults to 2^14 (16,384)
88
+
/// Value must be greater than 0, defaults to 2^14 (16,384).
/// Limits the size of the header compression table, in octets, the QPACK decoder on the server can use.
@@ -37,7 +39,7 @@ internal int HeaderTableSize
37
39
/// <summary>
38
40
/// Indicates the size of the maximum allowed size of a request header field sequence. This limit applies to both name and value sequences in their compressed and uncompressed representations.
39
41
/// <para>
40
-
/// Value must be greater than 0, defaults to 8192
42
+
/// Value must be greater than 0, defaults to 2^14 (16,384).
0 commit comments