1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:13:22 +08:00
This commit is contained in:
Dean Herbert 2024-12-03 09:27:18 +01:00 committed by GitHub
commit 84f4a37ae2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -99,7 +99,7 @@ namespace osu.Desktop
var hostOptions = new HostOptions var hostOptions = new HostOptions
{ {
IPCPort = !tournamentClient ? OsuGame.IPC_PORT : null, IPCPipeName = !tournamentClient ? OsuGame.IPC_PIPE_NAME : null,
FriendlyGameName = OsuGameBase.GAME_NAME, FriendlyGameName = OsuGameBase.GAME_NAME,
}; };

View File

@ -63,7 +63,7 @@ namespace osu.Game.Tests.Visual.Navigation
}); });
AddStep("create IPC sender channels", () => AddStep("create IPC sender channels", () =>
{ {
ipcSenderHost = new HeadlessGameHost(gameHost.Name, new HostOptions { IPCPort = OsuGame.IPC_PORT }); ipcSenderHost = new HeadlessGameHost(gameHost.Name, new HostOptions { IPCPipeName = OsuGame.IPC_PIPE_NAME });
osuSchemeLinkIPCSender = new OsuSchemeLinkIPCChannel(ipcSenderHost); osuSchemeLinkIPCSender = new OsuSchemeLinkIPCChannel(ipcSenderHost);
archiveImportIPCSender = new ArchiveImportIPCChannel(ipcSenderHost); archiveImportIPCSender = new ArchiveImportIPCChannel(ipcSenderHost);
}); });

View File

@ -87,9 +87,9 @@ namespace osu.Game
{ {
#if DEBUG #if DEBUG
// Different port allows running release and debug builds alongside each other. // Different port allows running release and debug builds alongside each other.
public const int IPC_PORT = 44824; public const string IPC_PIPE_NAME = "osu-lazer-debug";
#else #else
public const int IPC_PORT = 44823; public const string IPC_PORT = "osu-lazer";
#endif #endif
/// <summary> /// <summary>

View File

@ -27,7 +27,7 @@ namespace osu.Game.Tests
[CallerMemberName] string callingMethodName = @"") [CallerMemberName] string callingMethodName = @"")
: base($"{callingMethodName}-{Guid.NewGuid()}", new HostOptions : base($"{callingMethodName}-{Guid.NewGuid()}", new HostOptions
{ {
IPCPort = bindIPC ? OsuGame.IPC_PORT : null, IPCPipeName = bindIPC ? OsuGame.IPC_PIPE_NAME : null,
}, bypassCleanup: bypassCleanupOnDispose, realtime: realtime) }, bypassCleanup: bypassCleanupOnDispose, realtime: realtime)
{ {
this.bypassCleanupOnSetup = bypassCleanupOnSetup; this.bypassCleanupOnSetup = bypassCleanupOnSetup;