feat(batch6-task5): implement f4 permissions tls websocket mqtt cli options
This commit is contained in:
@@ -60,8 +60,13 @@ public enum OcspMode : byte
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class PinnedCertSet : HashSet<string>
|
public class PinnedCertSet : HashSet<string>
|
||||||
{
|
{
|
||||||
public PinnedCertSet() : base(StringComparer.OrdinalIgnoreCase) { }
|
public PinnedCertSet() : base(StringComparer.OrdinalIgnoreCase)
|
||||||
public PinnedCertSet(IEnumerable<string> collection) : base(collection, StringComparer.OrdinalIgnoreCase) { }
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public PinnedCertSet(IEnumerable<string> collection) : base(collection, StringComparer.OrdinalIgnoreCase)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -105,7 +110,8 @@ public class TlsConfigOpts
|
|||||||
public double Timeout { get; set; }
|
public double Timeout { get; set; }
|
||||||
public long RateLimit { get; set; }
|
public long RateLimit { get; set; }
|
||||||
public bool AllowInsecureCiphers { get; set; }
|
public bool AllowInsecureCiphers { get; set; }
|
||||||
public List<SslProtocols> CurvePreferences { get; set; } = [];
|
public List<TlsCipherSuite> Ciphers { get; set; } = [];
|
||||||
|
public List<SslApplicationProtocol> CurvePreferences { get; set; } = [];
|
||||||
public PinnedCertSet? PinnedCerts { get; set; }
|
public PinnedCertSet? PinnedCerts { get; set; }
|
||||||
public string CertMatch { get; set; } = string.Empty;
|
public string CertMatch { get; set; } = string.Empty;
|
||||||
public bool CertMatchSkipInvalid { get; set; }
|
public bool CertMatchSkipInvalid { get; set; }
|
||||||
@@ -431,7 +437,7 @@ public class ProxyConfig
|
|||||||
/// Parsed authorization section from config file.
|
/// Parsed authorization section from config file.
|
||||||
/// Mirrors the unexported <c>authorization</c> struct in opts.go.
|
/// Mirrors the unexported <c>authorization</c> struct in opts.go.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal class AuthorizationConfig
|
public class AuthorizationConfig
|
||||||
{
|
{
|
||||||
public string User { get; set; } = string.Empty;
|
public string User { get; set; } = string.Empty;
|
||||||
public string Pass { get; set; } = string.Empty;
|
public string Pass { get; set; } = string.Empty;
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
BIN
porting.db
BIN
porting.db
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
# NATS .NET Porting Status Report
|
# NATS .NET Porting Status Report
|
||||||
|
|
||||||
Generated: 2026-02-28 14:47:33 UTC
|
Generated: 2026-02-28 14:58:20 UTC
|
||||||
|
|
||||||
## Modules (12 total)
|
## Modules (12 total)
|
||||||
|
|
||||||
@@ -12,10 +12,10 @@ Generated: 2026-02-28 14:47:33 UTC
|
|||||||
|
|
||||||
| Status | Count |
|
| Status | Count |
|
||||||
|--------|-------|
|
|--------|-------|
|
||||||
| deferred | 2077 |
|
| deferred | 2057 |
|
||||||
| n_a | 24 |
|
| n_a | 24 |
|
||||||
| stub | 1 |
|
| stub | 1 |
|
||||||
| verified | 1571 |
|
| verified | 1591 |
|
||||||
|
|
||||||
## Unit Tests (3257 total)
|
## Unit Tests (3257 total)
|
||||||
|
|
||||||
@@ -34,4 +34,4 @@ Generated: 2026-02-28 14:47:33 UTC
|
|||||||
|
|
||||||
## Overall Progress
|
## Overall Progress
|
||||||
|
|
||||||
**2816/6942 items complete (40.6%)**
|
**2836/6942 items complete (40.9%)**
|
||||||
|
|||||||
Reference in New Issue
Block a user