From 093066479ac24ffc594bc115b15e515d2e9d9607 Mon Sep 17 00:00:00 2001
From: brutzman <brutzman@nps.edu>
Date: Sat, 25 Aug 2018 10:38:24 -0700
Subject: [PATCH] add "hello i am here" startup statement

---
 .../src/TcpExamples/TcpExample2ConnectionCounting.java          | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java b/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java
index 3620d4036f..f469850a93 100644
--- a/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java
+++ b/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java
@@ -27,6 +27,8 @@ public class TcpExample2ConnectionCounting
     {
         try
         {
+            System.out.println("TcpExample2ConnectionCounting has started and is waiting for a connection: telnet localhost 2317" );
+			
             // ServerSocket waits for a connection from a client. 
             // Notice that it is outside the loop; ServerSocket
             // needs to be made only once.
-- 
GitLab