mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-10-01 08:02:49 +02:00
20 lines
507 B
C#
20 lines
507 B
C#
using Phantom.Utils.Rpc.Runtime.Tls;
|
|
|
|
namespace Phantom.Utils.Rpc.Runtime.Client;
|
|
|
|
public sealed record RpcClientConnectionParameters(
|
|
string Host,
|
|
ushort Port,
|
|
string DistinguishedName,
|
|
RpcCertificateThumbprint CertificateThumbprint,
|
|
AuthToken AuthToken,
|
|
IRpcClientHandshake Handshake,
|
|
ushort MessageQueueCapacity,
|
|
ushort FrameQueueCapacity,
|
|
ushort MaxConcurrentlyHandledMessages
|
|
) : RpcCommonConnectionParameters(
|
|
MessageQueueCapacity,
|
|
FrameQueueCapacity,
|
|
MaxConcurrentlyHandledMessages
|
|
);
|