/* goodB2G() - use badsource and goodsink */
 private static void GoodB2G()
 {
     data = ""; /* Initialize data */
     /* Read data using a listening tcp connection */
     {
         TcpListener listener = null;
         try
         {
             listener = new TcpListener(IPAddress.Parse("10.10.1.10"), 39543);
             listener.Start();
             using (TcpClient tcpConn = listener.AcceptTcpClient())
             {
                 /* read input from socket */
                 using (StreamReader sr = new StreamReader(tcpConn.GetStream()))
                 {
                     /* POTENTIAL FLAW: Read data using a listening tcp connection */
                     data = sr.ReadLine();
                 }
             }
         }
         catch (IOException exceptIO)
         {
             IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
         }
         finally
         {
             if (listener != null)
             {
                 try
                 {
                     listener.Stop();
                 }
                 catch (SocketException se)
                 {
                     IO.Logger.Log(NLog.LogLevel.Warn, se, "Error closing TcpListener");
                 }
             }
         }
     }
     CWE94_Improper_Control_of_Generation_of_Code__Listen_tcp_68b.GoodB2GSink();
 }
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Set data to an integer represented as a string */
     data = "10";
     CWE94_Improper_Control_of_Generation_of_Code__Listen_tcp_68b.GoodG2BSink();
 }