Skip to content

Commit

Permalink
TcpPort = 5192
Browse files Browse the repository at this point in the history
  • Loading branch information
Taicanium committed Oct 21, 2024
1 parent af7d270 commit 6468865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public enum MessageType

public static List<char> CodeValues { get; } = Enumerable.Range(48, 10).Concat(Enumerable.Range(65, 26)).Concat(Enumerable.Range(97, 26)).Concat([33, 35, 36, 37]).Select(c => (char)c).ToList();
public static Dictionary<int, int> ValueCodes { get; } = new(CodeValues.Select((c, i) => new KeyValuePair<int, int>(c, i)));
public static int TcpPort { get; } = 80;
public static int TcpPort { get; } = 5192;

public static string CodeFromAddress(IPAddress? Address, byte? Flags)
{
Expand Down

0 comments on commit 6468865

Please sign in to comment.