aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ar_drone.c
AgeCommit message (Collapse)AuthorFilesLines
2014-12-21Cleanup use of #includes in non-generated epan/dissector/*.cBill Meier1-2/+0
Specifically: - Set packet.h to be the first wireshark #include after config.h and "system" #includes. packet.h added as an #include in some cases when missing. - Remove some #includes included (directly/indirectly) in packet.h. E.g., glib.h. (Done only for those files including packet.h). - As needed, move "system" #includes to be after config.h and before wireshark #includes. - Rework various #include file specifications for consistency. - Misc. Change-Id: Ifaa1a14b50b69fbad38ea4838a49dfe595c54c95 Reviewed-on: https://code.wireshark.org/review/5923 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-08-03Eliminate proto_tree_add_text from some dissectors.Michael Mann1-1/+1
Change-Id: Ib6024307e85d6c23decf40e9759f549c19ffe136 Reviewed-on: https://code.wireshark.org/review/3318 Petri-Dish: Michael Mann <mmann78@netscape.net> Petri-Dish: Evan Huus <eapache@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-06-19Revert "Fixup: tvb_* -> tvb_captured"Michael Mann1-1/+1
https://www.wireshark.org/lists/wireshark-dev/201406/msg00131.html This reverts commit 246fe2ca4c67d8c98caa84e2f57694f6322e2f96. Change-Id: Ib24bae0198c13a84bd7f731bf4af921212109a8f Reviewed-on: https://code.wireshark.org/review/2430 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-1/+1
Change-Id: I9209c1271967405c34c1b6fa43e1726a4d3a5a3f Reviewed-on: https://code.wireshark.org/review/2377 Reviewed-by: Anders Broman <a.broman58@gmail.com>
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-01-23Use tvb_get_string_enc() rather than tvb_get_string(). The version ofGuy Harris1-3/+3
the AR.drone Developer Guide I found online mentioned ASCII but not UTF-8. svn path=/trunk/; revision=54923
2013-12-12(Trivial)Bill Meier1-45/+41
- Remove two lines of commented out code; - Specify 'tab-width: 8' (not 4) in editor modelines; - Rework/add whitespace; svn path=/trunk/; revision=53982
2013-10-09Try to make more efficient heuristick checks.Anders Broman1-2/+6
svn path=/trunk/; revision=52468
2013-09-22emem -> wmem conversion:Pascal Quantin1-4/+4
- ep_tvb_get_bits() -> wmem_packet_tvb_get_bits() - tvb_g_memdup()/ep_tvb_memdup() -> tvb_memdup() - tvb_fake_unicode()/tvb_get_ephemeral_faked_unicode() -> tvb_get_faked_unicode() - tvb_get_g_string()/tvb_get_ephemeral_string()/tvb_get_seasonal_string() -> tvb_get_string() - tvb_get_g_unicode_string()/tvb_get_ephemeral_unicode_string() -> tvb_get_unicode_string() - tvb_get_ephemeral_string_enc() -> tvb_get_string_enc() - update docs accordingly svn path=/trunk/; revision=52172
2013-09-15Use "cheaper" length check.Anders Broman1-1/+1
svn path=/trunk/; revision=52064
2013-05-25Batch of filterable expert_infos.Michael Mann1-27/+43
svn path=/trunk/; revision=49581
2013-03-12- [-Wmissing-prototypes]Anders Broman1-0/+3
- explicit casts. svn path=/trunk/; revision=48274
2013-02-08Capitalize the short name.Gerald Combs1-1/+1
svn path=/trunk/; revision=47555
2013-02-01Replace THROW(ReportedBoundsError) with expert infosMichael Mann1-27/+55
Follow up to rev 47408 svn path=/trunk/; revision=47421
2013-02-01Fix the fuzz failure reported in ↵Jeff Morriss1-2/+83
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8284 : Throw an exception if we don't find the guint8 we're looking for. (This could also be done as expert infos; throwing an exception is a bit brute force but anyway the -1 return case has to be dealth with.) Maybe there should be a version of tvb_find_guint8() which throws an exception... svn path=/trunk/; revision=47408
2013-01-31Fix Coverity CID 971261: Unused pointer value. Additionally, #if 0 two ↵Chris Maynard1-36/+39
unused value_string's (should they be deleted altogether?), minor whitespace cleanup, delete a continuation character, try to use a consistent bracketing style throughout. [Is "Movment" a typo?] svn path=/trunk/; revision=47387
2013-01-31Constify a variable to which C string pointers will be assigned.Guy Harris1-1/+1
svn path=/trunk/; revision=47385
2013-01-31Fix RCS ID.Guy Harris1-1/+1
svn path=/trunk/; revision=47384
2013-01-31Get rid of CR's, and set the appropriate properties.Guy Harris1-702/+702
svn path=/trunk/; revision=47383
2013-01-31Add Parrot AR Drone dissector.Michael Mann1-0/+702
Bug 7493 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7493) svn path=/trunk/; revision=47382