Click here to Skip to main content
15,892,809 members
Articles / Programming Languages / C#

Packet Capture and Analayzer

Rate me:
Please Sign up or sign in to vote.
4.88/5 (119 votes)
23 Sep 2003CPOL8 min read 1.5M   36.1K   437  
Packet capture and analyzer program. With this program you can capture, display, analyze, save packets or load a saved packet file. It works like Etheral does.
using System;
using System.Windows.Forms;

namespace MyClasses
{

	// Transparent Bridging Protocol
	public class PacketTB
	{


		public struct PACKET_TRANSPARENT_BRIDGE
		{
			public ushort ProtocolIdentifier; // contains 0
			public byte Version; // contains 0
			// contains 0. if this value is 128 then this is a topology
			//change message. Because topology change messages has a 4 byte value
			//so further data processing must be stopped at this point.
			public byte MessageType; 
			public byte Flags;
			public ushort RootPriority;
			public string RootId; // 6 Bytes
			public uint RootPathCost;
			public ushort BridgePriority;
			public string BrifgeId; // 6 Bytes
			public ushort PortId;
			public ushort MessageAge;
			public ushort MaximumAge;
			public ushort HelloTime;
			public ushort ForwardDelay;
		}

		public PacketTB()
		{

		}

		public bool Parser( ref TreeNodeCollection mNode, 
			byte [] PacketData , 
			ref int Index , 
			ref ListViewItem LItem )
		{
			TreeNode mNodex;
			string Tmp = "";
			//int k = 0;

			mNodex = new TreeNode();
			mNodex.Text = "TB ( Trans Bridging Protocol )";
			//mNodex.Tag = Index.ToString() + "," + Const.LENGTH_OF_ARP.ToString();
			//Function.SetPosition( ref mNodex , Index - 2 , 2 , false );
	
			/*if( ( Index + Const.LENGTH_OF_ARP ) >= PacketData.Length )
			{
				mNode.Add( mNodex );
				Tmp = "[ Malformed TB packet. Remaining bytes don't fit an TB packet. Possibly due to bad decoding ]";
				mNode.Add( Tmp );
				LItem.SubItems[ Const.LIST_VIEW_INFO_INDEX ].Text = Tmp;
				
				return false;
			}*/

			try
			{
				//k = Index - 2; mNodex.Nodes[ mNodex.Nodes.Count - 1 ].Tag = k.ToString() + ",2";

				
				LItem.SubItems[ Const.LIST_VIEW_PROTOCOL_INDEX ].Text = "TB";
				LItem.SubItems[ Const.LIST_VIEW_INFO_INDEX ].Text = "TB protocol";

				mNode.Add( mNodex );
				
			}
			catch( Exception Ex )
			{
				mNode.Add( mNodex );
				Tmp = "[ Malformed TB packet. Remaining bytes don't fit an TB packet. Possibly due to bad decoding ]";
				mNode.Add( Tmp );
				Tmp = "[ Exception raised is <" + Ex.GetType().ToString() + "> at packet index <" + Index.ToString() + "> ]";
				mNode.Add( Tmp );
				LItem.SubItems[ Const.LIST_VIEW_INFO_INDEX ].Text = "[ Malformed TB packet. Remaining bytes don't fit an TB packet. Possibly due to bad decoding ]";

				return false;
			}

			return true;

		}

	}
}

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
Turkey Turkey
Hi to all...
I am an alone programmer. i am not a specialist on programming but i love it. anyone who supports source code sharing is definetely my friend.
Because i am so poor on writing about myself, anyone who wants to learn more about me can feel free to contact me...

Comments and Discussions