<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to build a Wireshark plug-in</title>
	<atom:link href="http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/feed/" rel="self" type="application/rss+xml" />
	<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 17:47:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Michael</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-26197</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 08 Feb 2012 17:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-26197</guid>
		<description>I would not suggest you to mess with this stuff on a weekend: there are plenty of things that might be a bit more interesting :). But if you find some time for this, well, I will appreciate that deeply.

Michael.</description>
		<content:encoded><![CDATA[<p>I would not suggest you to mess with this stuff on a weekend: there are plenty of things that might be a bit more interesting :). But if you find some time for this, well, I will appreciate that deeply.</p>
<p>Michael.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simeon</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-26193</link>
		<dc:creator>Simeon</dc:creator>
		<pubDate>Wed, 08 Feb 2012 15:45:26 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-26193</guid>
		<description>Hi Michael,

I&#039;ve not build a Wireshark plugin for a few years, so I&#039;m not sure if things have progressed from were they were.

It might make for an interesting weekend project to start from scratch and update this guide...</description>
		<content:encoded><![CDATA[<p>Hi Michael,</p>
<p>I&#8217;ve not build a Wireshark plugin for a few years, so I&#8217;m not sure if things have progressed from were they were.</p>
<p>It might make for an interesting weekend project to start from scratch and update this guide&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-26192</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 08 Feb 2012 15:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-26192</guid>
		<description>Hi Simeon,

Will possibly need your experience and help here.
I&#039;m a DSP programmer over years. I&#039;ve bumped into a problem of writing some wireshark dissector plugin. My current environment for that is x86 Windows, and it is far from my &quot;native&quot; coding environment. I have VS2008 C++ express (may download 2010 express if required).
Now, I&#039;ve reviewed the material on the Net dealing with building wireshark dissectors and found it a bit complicated. My question is: is there any simple way to compile a plugin dll in the VS, without all this cygwin stuff and wireshark source compiling? If yes, could you please write briefly how to. If not, what is the simplest way of building the plugin?

Thanks,
Michael</description>
		<content:encoded><![CDATA[<p>Hi Simeon,</p>
<p>Will possibly need your experience and help here.<br />
I&#8217;m a DSP programmer over years. I&#8217;ve bumped into a problem of writing some wireshark dissector plugin. My current environment for that is x86 Windows, and it is far from my &#8220;native&#8221; coding environment. I have VS2008 C++ express (may download 2010 express if required).<br />
Now, I&#8217;ve reviewed the material on the Net dealing with building wireshark dissectors and found it a bit complicated. My question is: is there any simple way to compile a plugin dll in the VS, without all this cygwin stuff and wireshark source compiling? If yes, could you please write briefly how to. If not, what is the simplest way of building the plugin?</p>
<p>Thanks,<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simeon</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-6551</link>
		<dc:creator>Simeon</dc:creator>
		<pubDate>Sat, 10 Jul 2010 02:12:50 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-6551</guid>
		<description>Hello Manoj,

If you do a window search for &quot;nmake&quot; in your &quot;Program Files&quot; directory you should find atleast one, if not many copies. Go one level higher up, and you should see a batch file &quot;vcvarsall.bat&quot; this is what you want run to setup your paths for that Visual Studio install.

Simeon</description>
		<content:encoded><![CDATA[<p>Hello Manoj,</p>
<p>If you do a window search for &#8220;nmake&#8221; in your &#8220;Program Files&#8221; directory you should find atleast one, if not many copies. Go one level higher up, and you should see a batch file &#8220;vcvarsall.bat&#8221; this is what you want run to setup your paths for that Visual Studio install.</p>
<p>Simeon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manoj</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-6530</link>
		<dc:creator>Manoj</dc:creator>
		<pubDate>Thu, 08 Jul 2010 09:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-6530</guid>
		<description>Hi,

I am using VS2008 C++ express to build  the code
I had installed Cygwin  on my machine
But when i run this command in CMD &quot; nmake –f Makefile.nmake setup&quot; it is throwing error saying unrecognized command &quot;nmake&quot; ?

Any guess ??
do i need to install anything else.


Manoj.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am using VS2008 C++ express to build  the code<br />
I had installed Cygwin  on my machine<br />
But when i run this command in CMD &#8221; nmake –f Makefile.nmake setup&#8221; it is throwing error saying unrecognized command &#8220;nmake&#8221; ?</p>
<p>Any guess ??<br />
do i need to install anything else.</p>
<p>Manoj.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-160</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Wed, 21 May 2008 08:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-160</guid>
		<description>Hi Simeon,
Thank you for your council
I have advanced a little in my project, I wish you aware if I would have a problem if it bothers you not.</description>
		<content:encoded><![CDATA[<p>Hi Simeon,<br />
Thank you for your council<br />
I have advanced a little in my project, I wish you aware if I would have a problem if it bothers you not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simeon</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-159</link>
		<dc:creator>Simeon</dc:creator>
		<pubDate>Wed, 14 May 2008 21:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-159</guid>
		<description>Hello Sam,

Well if you have Wireshark building, start by capturing some packets, and decode them as you see them. That&#039;s how I did it.</description>
		<content:encoded><![CDATA[<p>Hello Sam,</p>
<p>Well if you have Wireshark building, start by capturing some packets, and decode them as you see them. That&#8217;s how I did it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/comment-page-1/#comment-158</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Wed, 14 May 2008 12:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://simeonpilgrim.com/blog/2008/04/29/how-to-build-a-wireshark-plug-in/#comment-158</guid>
		<description>Hi!
I am a student in France, I am in  internship for 4mois;
my 1st  mission is to develop a plugin that decodes a Protocol used in the company.
I have installed all the development environment of wireshark
But I do not know how to begin. !!!!!!!!!!

Thank you for your help</description>
		<content:encoded><![CDATA[<p>Hi!<br />
I am a student in France, I am in  internship for 4mois;<br />
my 1st  mission is to develop a plugin that decodes a Protocol used in the company.<br />
I have installed all the development environment of wireshark<br />
But I do not know how to begin. !!!!!!!!!!</p>
<p>Thank you for your help</p>
]]></content:encoded>
	</item>
</channel>
</rss>

