aboutsummaryrefslogtreecommitdiff
path: root/lib/Net.Transport.SimpleTCP
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-07-15 18:58:06 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-07-15 18:58:06 -0400
commit85cd6793818a3edd0a963bb4829a960ee6b0e022 (patch)
tree3e852301428555e9964875884072dc5d0994cfe0 /lib/Net.Transport.SimpleTCP
parentabfb5761ee381b7e1e5342a5525ceca8c8fd81dd (diff)
chore: Just some minor checks and adjustments
Diffstat (limited to 'lib/Net.Transport.SimpleTCP')
-rw-r--r--lib/Net.Transport.SimpleTCP/src/TCPConfig.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Net.Transport.SimpleTCP/src/TCPConfig.cs b/lib/Net.Transport.SimpleTCP/src/TCPConfig.cs
index f5c8893..6bf63d1 100644
--- a/lib/Net.Transport.SimpleTCP/src/TCPConfig.cs
+++ b/lib/Net.Transport.SimpleTCP/src/TCPConfig.cs
@@ -86,16 +86,16 @@ namespace VNLib.Net.Transport.Tcp
/// WARNING: Setting this value too low will cause significant CPU overhead and GC load
/// </para>
/// </summary>
- public required readonly int CacheQuota { get; init; }
+ public readonly int CacheQuota { get; init; }
/// <summary>
/// An optional callback invoked after the socket has been created
/// for optional appliction specific socket configuration
/// </summary>
- public required readonly Action<Socket>? OnSocketCreated { get; init; }
+ public readonly Action<Socket>? OnSocketCreated { get; init; }
/// <summary>
/// Enables verbose logging of TCP operations using the <see cref="LogLevel.Verbose"/>
/// level
/// </summary>
- public required readonly bool DebugTcpLog { get; init; }
+ public readonly bool DebugTcpLog { get; init; }
}
} \ No newline at end of file