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

Send and receive messages in a LAN with broadcasting

Rate me:
Please Sign up or sign in to vote.
5.00/5 (17 votes)
6 Mar 2012MIT9 min read 95.2K   11.7K   73  
Lightweight .Net library for UDP LAN broadcasting.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Orekaria.Test", "Orekaria.Test", "{40249EC8-90C1-4050-B50A-37E3BCFE50C4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Orekaria.Lib.P2P", "Orekaria.Lib.P2P\Orekaria.Lib.P2P.csproj", "{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Orekaria.LanChat.WpfUI", "Orekaria.LanChat.WpfUI\Orekaria.LanChat.WpfUI.vbproj", "{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Orekaria.Libs", "Orekaria.Libs", "{9F79A632-4E7E-4470-BFE3-C031E67BCA64}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{419E2D3B-6353-4DB7-A214-F51A43CC6C5C}"
	ProjectSection(SolutionItems) = preProject
		Orekaria.Lib\Orekaria.Lib.Win32.dll = Orekaria.Lib\Orekaria.Lib.Win32.dll
		Orekaria.Lib\Orekaria.Lib.WpfControls.dll = Orekaria.Lib\Orekaria.Lib.WpfControls.dll
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Debug|x86.ActiveCfg = Debug|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Release|Any CPU.Build.0 = Release|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD}.Release|x86.ActiveCfg = Release|Any CPU
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Debug|Any CPU.ActiveCfg = Debug|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Debug|x86.ActiveCfg = Debug|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Debug|x86.Build.0 = Debug|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Release|Any CPU.ActiveCfg = Release|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Release|Mixed Platforms.Build.0 = Release|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Release|x86.ActiveCfg = Release|x86
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
	GlobalSection(NestedProjects) = preSolution
		{87D5E9FF-7C16-4E85-A4A6-8CA2F587C8A9} = {40249EC8-90C1-4050-B50A-37E3BCFE50C4}
		{E8BC1217-C0DE-4EFA-9B07-E8061E1125CD} = {9F79A632-4E7E-4470-BFE3-C031E67BCA64}
	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, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior)
Spain Spain
Hi, I am a Senior Generalist SDE and I have 25+ years of software development experience. My eyes, hands and brain have traveled from Spectrum Basic/assembler all the way to C++, Java and C#. In recent years I have been gluing electronics and software.

I have some Microsoft certifications along with others that I have forgotten.

http://orekaria.com

Comments and Discussions