1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 09:38:31 +00:00

connect on ipv4 only

speeds up first connection significantly
This commit is contained in:
Diogo Trindade 2025-06-18 22:23:23 +01:00
parent dc6715b236
commit 35a4033521
No known key found for this signature in database
GPG Key ID: 4B5B48393B9F875F

View File

@ -62,7 +62,7 @@ public sealed class WootingGrpcDeviceProvider : AbstractRGBDeviceProvider
/// <inheritdoc />
protected override void InitializeSDK()
{
_channel = GrpcChannel.ForAddress("http://localhost:50051");
_channel = GrpcChannel.ForAddress("http://127.0.0.1:50051");
_client = new RgbSdkService.RgbSdkServiceClient(_channel);
}