diff options
Diffstat (limited to 'ShiftOS.Main/Terminal/Commands')
| -rw-r--r-- | ShiftOS.Main/Terminal/Commands/tcpip.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Main/Terminal/Commands/tcpip.cs b/ShiftOS.Main/Terminal/Commands/tcpip.cs index 815c010..f6e8c49 100644 --- a/ShiftOS.Main/Terminal/Commands/tcpip.cs +++ b/ShiftOS.Main/Terminal/Commands/tcpip.cs @@ -30,12 +30,12 @@ namespace ShiftOS.Main.Terminal.Commands break; case "incoming": WriteLine("Incoming connections from localhost:"); - WriteLine($"IP ADDRESS v4 COMPUTER NAME"); + WriteLine($"IP ADDRESS IPv4 COMPUTER NAME"); WriteLine($"{r.Next(0, 255)}.{r.Next(0, 255)}.{r.Next(0, 255)}.{r.Next(255)} {gen}"); break; case "outgoing": WriteLine("Outgoing connections from localhost:"); - WriteLine($"IP ADDRESS v4 COMPUTER NAME"); + WriteLine($"IP ADDRESS IPv4 COMPUTER NAME"); WriteLine($"{r.Next(0, 255)}.{r.Next(0, 255)}.{r.Next(0, 255)}.{r.Next(255)} {gen}"); WriteLine($"[1] outgoing connection(s) is using {r.Next(0, 16)} MiBs of bandwith."); break; |
