Wireshark-dev: Re: [Wireshark-dev] Submitting a patch
From: Gerhard Gappmeier <gerhard.gappmeier@xxxxxxxxxxx>
Date: Tue, 27 Mar 2007 16:06:44 +0200
|
Hi Ulf, I did some minor changes today to accomplish your coding guidelines. I attached the new protocol dissector as follows: 1.) The patch for the makefile changes 2.) The new sources are in the attached zip file. (renamed to zip_ to avoid mail filtering) 3.) A sample capture file to test the dissector. Please take a look at sources if they are ok and add them to the repository. You can also reach me via skype as "gergap" if you want to discuss some changes. regards, Gerhard. Ulf Lamping schrieb: Gerhard Gappmeier wrote: |
Attachment:
testdata.cap
Description: Binary data
Index: configure.in =================================================================== --- configure.in (revision 21226) +++ configure.in (working copy) @@ -1415,6 +1415,7 @@ plugins/lwres/Makefile plugins/mate/Makefile plugins/mgcp/Makefile + plugins/opcua/Makefile plugins/opsi/Makefile plugins/pcli/Makefile plugins/profinet/Makefile Index: Makefile.am =================================================================== --- Makefile.am (revision 21226) +++ Makefile.am (working copy) @@ -228,6 +228,7 @@ -dlopen plugins/lwres/lwres.la \ -dlopen plugins/mate/mate.la \ -dlopen plugins/mgcp/mgcp.la \ + -dlopen plugins/opcua/opcua.la \ -dlopen plugins/opsi/opsi.la \ -dlopen plugins/pcli/pcli.la \ -dlopen plugins/profinet/profinet.la \ Index: Makefile.nmake =================================================================== --- Makefile.nmake (revision 21226) +++ Makefile.nmake (working copy) @@ -866,6 +866,7 @@ xcopy ".\plugins\lwres\lwres.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d xcopy ".\plugins\mate\mate.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d xcopy ".\plugins\mgcp\mgcp.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d + xcopy ".\plugins\opcua\opcua.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d xcopy ".\plugins\opsi\opsi.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d xcopy ".\plugins\pcli\pcli.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d xcopy ".\plugins\profinet\profinet.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d Index: plugins/Makefile.am =================================================================== --- plugins/Makefile.am (revision 21226) +++ plugins/Makefile.am (working copy) @@ -35,6 +35,7 @@ lwres \ mate \ mgcp \ + opcua \ opsi \ pcli \ profinet \ Index: plugins/Makefile.nmake =================================================================== --- plugins/Makefile.nmake (revision 21226) +++ plugins/Makefile.nmake (working copy) @@ -21,6 +21,7 @@ lwres \ mate \ mgcp \ + opcua \ opsi \ pcli \ profinet \ @@ -99,6 +100,12 @@ cd mgcp $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake cd .. + +opcua:: + cd opcua + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake + cd .. + opsi:: cd opsi $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake @@ -185,6 +192,9 @@ cd mgcp $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean cd .. + cd opcua + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean + cd .. cd opsi $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean cd .. @@ -254,6 +264,9 @@ cd mgcp $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean cd .. + cd opcua + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean + cd .. cd opsi $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean cd .. @@ -323,6 +336,9 @@ cd mgcp $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean cd .. + cd opcua + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean + cd .. cd opsi $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean cd .. @@ -371,6 +387,7 @@ xcopy lwres\*.dll $(VERSION) /d xcopy mate\*.dll $(VERSION) /d xcopy mgcp\*.dll $(VERSION) /d + xcopy opcua\*.dll $(VERSION) /d xcopy opsi\*.dll $(VERSION) /d xcopy pcli\*.dll $(VERSION) /d xcopy profinet\*.dll $(VERSION) /d
Attachment:
opcua.zip_
Description: Binary data
- Prev by Date: [Wireshark-dev] Segmentation fault in dissector
- Next by Date: Re: [Wireshark-dev] preference tree for SS7
- Previous by thread: Re: [Wireshark-dev] Compilation warning (error on Win) fix for packet-ipmi.c
- Next by thread: [Wireshark-dev] Patch to AMQP dissector
- Index(es):