From 800f904cbae52cdd07d4aa6d79ab425c277e0214 Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Tue, 16 Jul 2024 12:18:37 -0700 Subject: [PATCH] NetBeans terminal is viable option for telnet, Windows users must have cygwin installed --- examples/src/TcpExamples/TcpExample1Telnet.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/src/TcpExamples/TcpExample1Telnet.java b/examples/src/TcpExamples/TcpExample1Telnet.java index 545f22714c..7770e1cfe1 100644 --- a/examples/src/TcpExamples/TcpExample1Telnet.java +++ b/examples/src/TcpExamples/TcpExample1Telnet.java @@ -9,6 +9,11 @@ import java.net.*; * you write, which we will do later. Right now the TcpExample simply * writes a string in response to a connection. * + * As a alternative to running the Windows (or other operating system) console, + * you can instead run the NetBeans terminal window. If you are on Windows, + * NetBeans is looking for cygwin installation (for unix-like compatibility). + * Details at https://savage.nps.edu/Savage/developers.html#Cygwin + * * Modifying his program is the basis for Assignment 1. * * Testing the running server program from telnet looks like this: -- GitLab