- SignalR handshake fix

- Self-hosted PhotonSocketServer support
- Split photon and hile event patch
- Deprecated amplitude redirect patch
This commit is contained in:
2025-04-13 02:11:08 -04:00
parent 155dda33b9
commit 8d1bac8201
13 changed files with 304 additions and 99 deletions

View File

@@ -8,7 +8,6 @@ namespace undead_universal_patch_il2cpp
public static ConfigEntry<bool> LogAllRequests;
public static ConfigEntry<bool> CertificatePatch;
public static ConfigEntry<bool> HilePatch;
public static ConfigEntry<bool> AmplitudeRedirectPatch;
public static ConfigEntry<bool> SignalRHandshakeFix;
public static ConfigEntry<bool> ImageSignaturePatch;
}
@@ -17,8 +16,7 @@ namespace undead_universal_patch_il2cpp
public static bool LogAllRequests = false;
public static bool CertificatePatch = false;
public static bool HilePatch = false;
public static bool AmplitudeRedirectPatch = true;
public static bool SignalRHandshakeFix = true;
public static bool SignalRHandshakeFix = false;
public static bool ImageSignaturePatch = false;
}
public static class NameserverConfig
@@ -34,14 +32,22 @@ namespace undead_universal_patch_il2cpp
public static class PhotonConfig
{
public static ConfigEntry<bool> PatchPhotonIds;
public static ConfigEntry<bool> PunLogging;
public static ConfigEntry<bool> SelfHosted;
public static ConfigEntry<string> AppID;
public static ConfigEntry<string> VoiceAppID;
public static ConfigEntry<string> ServerAddress;
public static ConfigEntry<int> ServerPort;
}
public static class PhotonConfigDefaults
{
public static bool PatchPhotonIds = false;
public static bool PunLogging = false;
public static bool SelfHosted = false;
public static string AppID = "replace-me-please";
public static string VoiceAppID = "replace-me-please";
public static string ServerAddress = "127.0.0.1";
public static int ServerPort = 5055;
}
public static class GalvanicConfig
@@ -59,4 +65,5 @@ namespace undead_universal_patch_il2cpp
public static string Export = "IDoNotWantToExportMyKeys";
public static bool Import = false;
}
}