Skip to content

Commit c8fab06

Browse files
Merge pull request #964 from f2069/fix-links
Broken links
2 parents bc2efdc + 2165519 commit c8fab06

File tree

24 files changed

+40
-41
lines changed

24 files changed

+40
-41
lines changed

Assets/FishNet/CodeGenerating/cecil-0.11.4/Mono.Cecil.PE/ByteBufferEqualityComparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public bool Equals(ByteBuffer x, ByteBuffer y)
3131

3232
public int GetHashCode(ByteBuffer buffer)
3333
{
34-
// See http:// en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
34+
// See http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
3535
const int fnv_offset_bias = unchecked((int)2166136261);
3636
const int fnv_prime = 16777619;
3737

Assets/FishNet/CodeGenerating/cecil-0.11.4/Mono.Security.Cryptography/CryptoConvert.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// Author:
55
// Sebastien Pouliot <[email protected]>
66
//
7-
// (C) 2003 Motus Technologies Inc. (http:// www.motus.com)
8-
// Copyright (C) 2004-2006 Novell Inc. (http:// www.novell.com)
7+
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8+
// Copyright (C) 2004-2006 Novell Inc. (http://www.novell.com)
99
//
1010
// Permission is hereby granted, free of charge, to any person obtaining
1111
// a copy of this software and associated documentation files (the
@@ -133,7 +133,7 @@ private static RSA FromCapiPrivateKeyBlob(byte[] blob, int offset)
133133

134134
// ok, this is hackish but CryptoAPI support it so...
135135
// note: only works because CRT is used by default
136-
// http:// bugzilla.ximian.com/show_bug.cgi?id=57941
136+
// http://bugzilla.ximian.com/show_bug.cgi?id=57941
137137
rsap.D = new byte [byteLen]; // must be allocated
138138
if (pos + byteLen + offset <= blob.Length)
139139
{
@@ -157,7 +157,7 @@ private static RSA FromCapiPrivateKeyBlob(byte[] blob, int offset)
157157
{
158158
// this may cause problem when this code is run under
159159
// the SYSTEM identity on Windows (e.g. ASP.NET). See
160-
// http:// bugzilla.ximian.com/show_bug.cgi?id=77559
160+
// http://bugzilla.ximian.com/show_bug.cgi?id=77559
161161
bool throws = false;
162162
try
163163
{
@@ -220,7 +220,7 @@ private static RSA FromCapiPublicKeyBlob(byte[] blob, int offset)
220220
{
221221
// this may cause problem when this code is run under
222222
// the SYSTEM identity on Windows (e.g. ASP.NET). See
223-
// http:// bugzilla.ximian.com/show_bug.cgi?id=77559
223+
// http://bugzilla.ximian.com/show_bug.cgi?id=77559
224224
CspParameters csp = new();
225225
csp.Flags = CspProviderFlags.UseMachineKeyStore;
226226
rsa = new RSACryptoServiceProvider(csp);

Assets/FishNet/CodeGenerating/cecil-0.11.4/Mono.Security.Cryptography/CryptoService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static byte[] GetPublicKey(WriterParameters parameters)
3232
var publicKey = new byte [12 + cspBlob.Length];
3333
Buffer.BlockCopy(cspBlob, 0, publicKey, 12, cspBlob.Length);
3434
// The first 12 bytes are documented at:
35-
// http:// msdn.microsoft.com/library/en-us/cprefadd/html/grfungethashfromfile.asp
35+
// http://msdn.microsoft.com/library/en-us/cprefadd/html/grfungethashfromfile.asp
3636
// ALG_ID - Signature
3737
publicKey[1] = 36;
3838
// ALG_ID - Hash

Assets/FishNet/DOCUMENTATION.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Please view our online documentation for the most up to date information: https:// fish-networking.gitbook.io/docs/
1+
Please view our online documentation for the most up to date information: https://fish-networking.gitbook.io/docs/
22

3-
Support is available on our discord. Please contact FirstGearGames#0001 @ https:// discord.gg/Ta9HgDh4Hj
3+
Support is available on our discord. Please contact FirstGearGames#0001 @ https://discord.gg/Ta9HgDh4Hj

Assets/FishNet/Demos/Authenticator/Scripts/HostAuthenticator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private void OnHostPasswordBroadcast(NetworkConnection conn, HostPasswordBroadca
101101
/// <summary>
102102
/// Sets a host hash of length.
103103
/// </summary>
104-
/// https:// stackoverflow.com/questions/32932679/using-rngcryptoserviceprovider-to-generate-random-string
104+
/// https://stackoverflow.com/questions/32932679/using-rngcryptoserviceprovider-to-generate-random-string
105105
private void SetHostHash(int length)
106106
{
107107
if (length <= 0)

Assets/FishNet/Demos/Prediction/CharacterController/Scripts/CharacterControllerPrediction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ private void PerformReplicate(ReplicateData rd, ReplicateState state = Replicate
269269
* Doing this does risk a chance of graphical jitter in the
270270
* scenario a de-synchronization occurs, but if only predicting
271271
* a couple ticks the chances are low. */
272-
// See https:// fish-networking.gitbook.io/docs/manual/guides/prediction/version-2/creating-code/predicting-states
272+
// See https://fish-networking.gitbook.io/docs/manual/guides/prediction/version-2/creating-code/predicting-states
273273
if (!IsServerStarted && !IsOwner)
274274
{
275275
/* If ticked then set last ticked value.

Assets/FishNet/Runtime/Editor/CodeStripping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void OnPreprocessBuild(BuildReport report)
6767
}
6868

6969
/* Solution for builds ending with errors and not triggering OnPostprocessBuild.
70-
* Link: https:// gamedev.stackexchange.com/questions/181611/custom-build-failure-callback
70+
* Link: https://gamedev.stackexchange.com/questions/181611/custom-build-failure-callback
7171
*/
7272
private void CompilationPipelineOnCompilationStarted(object compilationContext)
7373
{

Assets/FishNet/Runtime/Editor/Configuring/DelayedEditorTasks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private static void LogFeedbackLink()
5252
// Only log the link when editor opens.
5353
if (Time.realtimeSinceStartup < 10f)
5454
{
55-
string msg = $"Thank you for using Fish-Networking! If you have any feedback -- be suggestions, documentation, or performance related, let us know through our anonymous Google feedback form!{Environment.NewLine}" + @"<color=#67d419>https:// forms.gle/1g13VY4KKMnEqpkp6</color>";
55+
string msg = $"Thank you for using Fish-Networking! If you have any feedback -- be suggestions, documentation, or performance related, let us know through our anonymous Google feedback form!{Environment.NewLine}" + @"<color=#67d419>https://forms.gle/1g13VY4KKMnEqpkp6</color>";
5656
Debug.Log(msg);
5757
}
5858
}

Assets/FishNet/Runtime/Editor/Configuring/FIshNetGettingStartedEditor.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,39 +75,39 @@ private void OnGUI()
7575

7676
if (GUILayout.Button("Leave us a review!", _reviewButtonStyle))
7777
{
78-
Application.OpenURL("https:// assetstore.unity.com/packages/tools/network/fish-net-networking-evolved-207815");
78+
Application.OpenURL("https://assetstore.unity.com/packages/tools/network/fish-net-networking-evolved-207815");
7979
}
8080

8181
GUILayout.Space(20);
8282

8383
EditorGUILayout.BeginHorizontal();
8484
if (GUILayout.Button("Documentation", GUILayout.Width(position.width * 0.485f)))
8585
{
86-
Application.OpenURL("https:// fish-networking.gitbook.io/docs/");
86+
Application.OpenURL("https://fish-networking.gitbook.io/docs/");
8787
}
8888

8989
if (GUILayout.Button("Discord", GUILayout.Width(position.width * 0.485f)))
9090
{
91-
Application.OpenURL("https:// discord.gg/Ta9HgDh4Hj");
91+
Application.OpenURL("https://discord.gg/Ta9HgDh4Hj");
9292
}
9393
EditorGUILayout.EndHorizontal();
9494

9595
EditorGUILayout.BeginHorizontal();
9696
if (GUILayout.Button("FishNet Pro", GUILayout.Width(position.width * 0.485f)))
9797
{
98-
Application.OpenURL("https:// fish-networking.gitbook.io/docs/master/pro");
98+
Application.OpenURL("https://fish-networking.gitbook.io/docs/master/pro");
9999
}
100100

101101
if (GUILayout.Button("Github", GUILayout.Width(position.width * 0.485f)))
102102
{
103-
Application.OpenURL("https:// github.com/FirstGearGames/FishNet");
103+
Application.OpenURL("https://github.com/FirstGearGames/FishNet");
104104
}
105105
EditorGUILayout.EndHorizontal();
106106

107107
EditorGUILayout.BeginHorizontal();
108108
if (GUILayout.Button("Pro Downloads", GUILayout.Width(position.width * 0.485f)))
109109
{
110-
Application.OpenURL("https:// www.firstgeargames.com/");
110+
Application.OpenURL("https://www.fish-networking.com/");
111111
}
112112

113113
// if (GUILayout.Button("Examples", GUILayout.Width(this.position.width * 0.485f)))

Assets/FishNet/Runtime/Managing/Scened/LoadUnloadDatas/LoadOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class LoadOptions
1919
public bool AllowStacking;
2020
/// <summary>
2121
/// LocalPhysics mode to use when loading this scene. Generally this will only be used when applying scene stacking. Only used by the server.
22-
/// https:// docs.unity3d.com/ScriptReference/SceneManagement.LocalPhysicsMode.html
22+
/// https://docs.unity3d.com/ScriptReference/SceneManagement.LocalPhysicsMode.html
2323
/// </summary>
2424
[System.NonSerialized]
2525
public LocalPhysicsMode LocalPhysics = LocalPhysicsMode.None;

0 commit comments

Comments
 (0)