Click here to Skip to main content
15,888,527 members
Articles / Programming Languages / C#

Scalable Server Events with .NET UDP Sockets

Rate me:
Please Sign up or sign in to vote.
4.70/5 (10 votes)
21 Nov 200610 min read 68.8K   2.3K   59  
An article on notifying WinForms clients on a network that an event which concerns them has transpired.
using System;

namespace UDPEvents
{
	/// <summary>
	/// Grouping of app constants
	/// </summary>
	public class Consts
	{
		// No of clients
		public const int MaxClients = 3;
		
		// UDP Ports
		public const int ServerPort = 50001;
		public const int ManagerPort = 50002;
		public const int BaseClientPort = 50003;

		// Remoting config
		public const int ServerRemotingPort = 8000;
	}
}

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
Web Developer
South Africa South Africa
Joon du Randt is a technical team leader for DVT, a software company based in Cape Town, South Africa.

He has been programming since the age of 10, and has been programming as a career since age 19.

Originally a Delphi developer, he made the swtich to C# in 2005 and has not regretted it since

Comments and Discussions