Click here to Skip to main content
15,886,842 members
Articles / Programming Languages / C#

A TCP/IP Server written in C#

Rate me:
Please Sign up or sign in to vote.
4.64/5 (62 votes)
29 Dec 2003CPOL8 min read 563.8K   59.4K   225  
TCP/IP Server, which is running as a Windows Service waiting for client requests
using System;
using System.Net.Sockets;
using System.Threading;

namespace SGCFGXFRService
{
	/// <summary>
	/// Summary description for SGCFGXFRClientSocketListener.
	/// </summary>
	public class SGCFGXFRClientSocketListener
	{
		private Socket m_clientSocket = null;
		public SGCFGXFRClientSocketListener(Socket clientSocket)
		{
			m_clientSocket = clientSocket;
		}

		public void StartClientListener()
		{
			Thread clientListenerThread = 
				new Thread(new ThreadStart(ClientListenerThreadStart));
		}

		private void ClientListenerThreadStart()
		{
			while (m_clientSocket.Connected)
			{

			}
		}

		public void StopClientListener()
		{
			if (m_clientSocket)
			{
				m_clientSocket.Close();
			}
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions