aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-quic.c
AgeCommit message (Collapse)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-02QUIC dissector : Update from last Design Document and Specification (12/2/2013)Alexis La Goutte1-31/+31
Changed “GUID” to “CID” (Connection Identifier), as the original term carried common meaning and baggage that was not intended Change-Id: I04986331aee33be237dab6963c0ff39accf507cd Reviewed-on: https://code.wireshark.org/review/81 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2014-02-02Fix dissector exception when GUID is empty in flagsPeter Wu1-2/+4
When the GUID (CID or Connection Identifier in a more recent spec) field in Public Flags is 0, a zero-length item would be added. This trivial patch prevents a dissector exception by checking the length first. Change-Id: Idf6d970bc1b0b3f1a8e47618a8759f6a0cd54c65 Reviewed-on: https://code.wireshark.org/review/78 Reviewed-by: Evan Huus <eapache@gmail.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2013-12-12- Forward declaration of register functions.Anders Broman1-0/+1
svn path=/trunk/; revision=53971
2013-11-09Add QUIC (Quick UDP Internet Connections) dissectorAlexis La Goutte1-0/+382
See http://blog.chromium.org/2013/06/experimenting-with-quic.html Don't yet support protocol decryption... https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9402 svn path=/trunk/; revision=53177