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

Genesis UDP Server and Client

Rate me:
Please Sign up or sign in to vote.
4.97/5 (46 votes)
21 Dec 20059 min read 239.5K   8.2K   134  
An article that shows the implementation of a lightweight UDP server and client with optional reliable channel.
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenesisCore", "Core\GenesisCore.csproj", "{9FED5F0C-C16D-4A65-A19B-D9B0B217D835}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenesisChatServer", "GenesisChatServer\GenesisChatServer.csproj", "{A33974D3-BF3A-4E04-B558-FCCDA12B9846}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenesisChatClient", "GenesisChatClient\GenesisChatClient.csproj", "{472DBE6F-B20C-43FA-A21D-3221E6D575C0}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{9FED5F0C-C16D-4A65-A19B-D9B0B217D835}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{9FED5F0C-C16D-4A65-A19B-D9B0B217D835}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{9FED5F0C-C16D-4A65-A19B-D9B0B217D835}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{9FED5F0C-C16D-4A65-A19B-D9B0B217D835}.Release|Any CPU.Build.0 = Release|Any CPU
		{A33974D3-BF3A-4E04-B558-FCCDA12B9846}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A33974D3-BF3A-4E04-B558-FCCDA12B9846}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A33974D3-BF3A-4E04-B558-FCCDA12B9846}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A33974D3-BF3A-4E04-B558-FCCDA12B9846}.Release|Any CPU.Build.0 = Release|Any CPU
		{472DBE6F-B20C-43FA-A21D-3221E6D575C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{472DBE6F-B20C-43FA-A21D-3221E6D575C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{472DBE6F-B20C-43FA-A21D-3221E6D575C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{472DBE6F-B20C-43FA-A21D-3221E6D575C0}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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
United Kingdom United Kingdom
Born in England, I have been programming since a very early age when my dad gave me prewritten programs to type in and run on a Sinclair ZX81 machine (seeing my name printed out on a TV screen was enough to keep me entertained!). I later did work using basic and STOS basic on the Atari ST and after that got my first PC and used Microsoft's QBasic. Later when I was about 13 I was in an airport and saw a trial copy of Visual Basic on a magazine, which I bought and it got me hooked on the Microsoft development tools.

Currently I am studying a software engineering degree and have been working with .NET since 1.0. I have just moved over to Visual Studio 2005/.NET 2.0 and am loving it! During my degree I have worked for a year at DuPont, where I ended up changing a lot of their old existing software over to .NET and improving it in the process! Since then I have been back and done some consulting work involving maintaining some of their older C++/MFC software.

While most of my current interestes involve .NET I am also confident in working with C++ in Win32, VB, Java, and have even done some development work on the Linux platform (although most of this involved ensuring that software I wrote in C++ was platform independent).

I have a strong passion for software technology, both higher level and more recently, systems level stuff (the dissertation I am doing for my degree is to implement a small compiler and virtual machine in C# for a Pascal-style language).

Comments and Discussions