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

Protocol implementation

Rate me:
Please Sign up or sign in to vote.
2.96/5 (9 votes)
31 Jan 20053 min read 34.9K   254   24  
Add some protocol support to your server.
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;

namespace Infinity.Networking
{
	/// <summary>
	/// Summary description for ClientBase.
	/// </summary>
	public class ClientBase
	{
		private const int BUFFERSIZE = 1024;
		private string _serverIP;
		private int _port;
		private Socket _soc;

		public ClientBase(string serverIP,int port)
		{
			_serverIP = serverIP;
			_port = port;
			_soc = new Socket(
				AddressFamily.InterNetwork,
				SocketType.Stream,
				ProtocolType.Tcp);
		}

		public void Connect()
		{
			_soc.Connect(
				new IPEndPoint(
				IPAddress.Parse(_serverIP),
				_port));
		}

		public void Send(byte[] data)
		{
			_soc.Send(data);
		}

		public void Send(string text)
		{
			Send(Encoding.Default.GetBytes(text));
		}

		public void WaitForData()
		{
			byte[] buffer = new byte[BUFFERSIZE];
			try
			{
				_soc.Receive(buffer);
				OnDataRecieved(buffer);
			}
			catch
			{
				// TODO : handle socket exceptions
			}
		}

		protected virtual void OnDataRecieved(byte[] buffer)
		{
		
		}
	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions