Re: [Wireshark-dev] Compile errors in asn1 dissectors

2009-06-23 Thread Kovarththanan Rajaratnam
Hey, Anders Broman wrote: Hi, There probably is a problem of circular dependencies, try generating only ros first: C:\Wireshark\asn1\rosnmake -f makefile.nmake Thanks. This fixed the issue I was seeing. -- Best regards, Kovarththanan Rajaratnam

[Wireshark-dev] Plugin compatibility with Portable version

2009-06-23 Thread yvanmmailbox-web
Hi list, I developed plugins that works well on standard Windows version of Wireshark (1.2.0), but one of them can't be loaded on the portable version (same version number). I have the following error: Couldn't load module F:\Softs\WiresharkPortable\App\Wireshark\plugins\1.2.0\bite.dll:

[Wireshark-dev] buildbot failure in Wireshark (development) on Ubuntu-7.10-x86-64

2009-06-23 Thread buildbot-no-reply
The Buildbot has detected a new failure of Ubuntu-7.10-x86-64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Ubuntu-7.10-x86-64/builds/1144 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: ubuntu-7.10-x86

Re: [Wireshark-dev] Plugin compatibility with Portable version

2009-06-23 Thread Graeme Lunt
Hi, There should be no particular problem using custom plugins with the WiresharkPortable. As you say one of them, can I assume that you have got other plugins to work? Is it perhaps that bite.dll requires some other dlls to be present? Graeme 2009/6/23 yvanmmailbox-...@yahoo.fr Hi list,

[Wireshark-dev] Re : Plugin compatibility with Portable version

2009-06-23 Thread yvanmmailbox-web
Sure, I have another one, my main plugin afdx.dll that works. This one is necessary for bite.dll working, but I put both in the folder, like I do on my installed version, and I have the error message. That's why I need some ways to search the problem. What are the main differences between the

[Wireshark-dev] buildbot failure in Wireshark (development) on OSX-10.5-x86

2009-06-23 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.5-x86/builds/2716 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason:

[Wireshark-dev] buildbot failure in Wireshark (development) on OSX-10.5-ppc

2009-06-23 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-ppc on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.5-ppc/builds/1391 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-ppc Build Reason:

[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-XP-x86

2009-06-23 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-XP-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Windows-XP-x86/builds/6386 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-xp-x86 Build

[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-XP-Win64

2009-06-23 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-XP-Win64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Windows-XP-Win64/builds/751 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-xp-win64 Build

[Wireshark-dev] Plugin for ASN.1/BER based dissector

2009-06-23 Thread Christopher White (WTA)
Dear All, Is it possible to construct a plugin dissector which is based on ASN.1 BER and is constructed using the wireshark ASN.1/BER tools (i.e.: asn2wrs)? Has anyone experience in this field? I would be grateful for any tips. Best regards, Chris

Re: [Wireshark-dev] Plugin for ASN.1/BER based dissector

2009-06-23 Thread Anders Broman
Hi, It should work :-) One way is to place the asn1 file etc in a new folder under the dir /asn1/ (look at the other dissectors), generate the x.[c|h] files copy them To a new folder in the plugins directory and then build the plugin(look at other plugins). http://wiki.wireshark.org/Asn2wrs

Re: [Wireshark-dev] Re : Plugin compatibility with Portable version

2009-06-23 Thread wsgd
This error message could be a manifest problem. The manifest must be : - into the dll directory - directly inside the dll (using mt.exe -manifest dll_name.dll.manifest -outputresource:dll_name.dll;2) Olivier yvanmmailbox-...@yahoo.fr a écrit : Sure, I have another one, my main plugin

[Wireshark-dev] Plugin for ASN.1/BER based dissector

2009-06-23 Thread Christopher White (WTA)
Hi Anders, Hi All, That sounds straight forward enough. I have already generated the packet-x.c and .h with asn2wrs. So now I need to setup a dir under plugins and follow the procedure for creating plugins - this is the part I am not yet familiar with. I will readup on this and follow the