diff options
| author | AShifter <[email protected]> | 2017-12-10 16:34:14 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-12-10 16:34:14 -0700 |
| commit | f847236b78d00b9e3c528938fe1331f6817d3dde (patch) | |
| tree | 2f235d77e7cae0c2ba85848af2883b2d94fa9f4d /ShiftOS.Main/Terminal/Commands/tcpip.cs | |
| parent | 684cdb8e3b7e9bb7e5d9be2b837bcf2c48967b52 (diff) | |
| download | shiftos-rewind-f847236b78d00b9e3c528938fe1331f6817d3dde.tar.gz shiftos-rewind-f847236b78d00b9e3c528938fe1331f6817d3dde.tar.bz2 shiftos-rewind-f847236b78d00b9e3c528938fe1331f6817d3dde.zip | |
things are working again
yoy
Diffstat (limited to 'ShiftOS.Main/Terminal/Commands/tcpip.cs')
| -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; |
