Re: [Wireshark-dev] -fPIC on Ubuntu Wily

2015-10-30 Thread Hauke Mehrtens
On 10/27/2015 11:45 PM, Evan Huus wrote: > After recently upgrading to Ubuntu 15.10, my cmake configure failed with: > -- Performing Test WORKS_WITH_FPIC - Failed > CMake Error at CMakeLists.txt:938 (message): > Couldn't compile Qt without -fPIC nor with -fPIC > > Digging into the logs, the test

Re: [Wireshark-dev] Unable to recognise DTLS packets

2014-02-12 Thread Hauke Mehrtens
On 02/12/2014 01:02 PM, Tulika Bose wrote: > Dear All, >I have come across a problem with the display filter of dtls.The > version I am using is 1.10.4.I have some DTLS packets,where DTLS is used > over CoAP,and they have been captured in a .pcapng file. But when I > filter the packets using th

Re: [Wireshark-dev] r53871, test.sh decryption failure

2013-12-08 Thread Hauke Mehrtens
On 12/08/2013 11:38 PM, Jakub Zawadzki wrote: > On Sun, Dec 08, 2013 at 11:08:39PM +0100, Martin Kaiser wrote: >> sorry for causing problems with the DVB-CI decryption test. > > Don't worry. It's DTLS failing not DVB-CI ;-) > Sorry. This is the fix for the DTLS problem: https://bugs.wireshark.or

Re: [Wireshark-dev] Build instability

2013-12-08 Thread Hauke Mehrtens
On 12/08/2013 04:30 PM, Kaul wrote: > Hi all, > > I've been trying to enhance a specific dissector for two weeks now. > Since I'm afraid of diverging the code (although I'm working on a > specific dissector), I update my code base often (~ once a day). > Regretfully, 5 times (in 2 weeks!) this has

[Wireshark-dev] Code sharing between TLS and DTLS

2013-07-03 Thread Hauke Mehrtens
the ssl dissector. Hauke >From 2bcbb36633807bac966b492608fc9f2020866d8a Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Thu, 13 Jun 2013 17:12:44 +0200 Subject: [PATCH 2/2] dtls: use dissector for ServerHello extensions from ssl DTLS is just a modification to TLS, the RFC only defi

[Wireshark-dev] Code sharing between TLS and DTLS

2013-05-16 Thread Hauke Mehrtens
The DTLS rfc6347 describes just the differences to tls (ssl) and these two protocols are very similar. Currently the wireshark dissectors for tls and dtls are not sharing much code, just at little in ssl-utils.c. I did some improvements for the DTLS dissector and much of this was copying the code