summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-02-11Rename arphrdaddr_to_str() to tvb_arphrdaddr_to_str() and make it take a ↵Jeff Morriss5-38/+24
pointer a TVB and an offset instead of (generally) a pointer into a TVB. svn path=/trunk/; revision=35913
2011-02-11Rename vines_to_str() to tvb_vines_to_str() and make it take a pointer a TVBJeff Morriss4-115/+113
and an offset instead of (generally) a pointer into a TVB. Move most of the contents of packet-vines.h into packet-vines.c: the moved content is only needed in that file. svn path=/trunk/; revision=35912
2011-02-11Check for places where tvb_bytes_to_str() or tvb_get_bytes_to_str_punct()Jeff Morriss5-20/+17
should be used (instead of the non-tvb functions with a call to tvb_get_ptr()). Use those functions in a bunch of places. svn path=/trunk/; revision=35911
2011-02-11Oops, put a comma backJeff Morriss1-1/+1
svn path=/trunk/; revision=35910
2011-02-11Clean up indentationJeff Morriss1-378/+378
svn path=/trunk/; revision=35909
2011-02-11Show subheaders summary in subheader root item.Martin Mathieson1-0/+13
svn path=/trunk/; revision=35908
2011-02-10Document that proto_tree_add_bytes_format() andJeff Morriss1-0/+4
proto_tree_add_bytes_format_value() may be given a NULL value_ptr. svn path=/trunk/; revision=35907
2011-02-10Add (commented-out for now) code to check certain function calls for embeddedJeff Morriss1-3/+44
(in the argument list) calls to tvb_get_ptr(). svn path=/trunk/; revision=35906
2011-02-10Use tvb_ip_to_str() and tvb_ether_to_str().Jeff Morriss2-11/+9
svn path=/trunk/; revision=35905
2011-02-10Pass NULL as the value_ptr to proto_tree_add_bytes_format().Jeff Morriss1-14/+4
Simplify the code a bit since tvb_ensure_bytes_exist() was already throwing an exception if all the bytes weren't there. Use tvb_ether_to_str(). svn path=/trunk/; revision=35904
2011-02-10From Alexis La Goutte:Anders Broman1-102/+179
Cleanup 802.11 Dissector :Enhance SSID, Supported Rates, DS, FH, CFP.. Information Element sub dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5660 svn path=/trunk/; revision=35903
2011-02-10Declare ett's as gint, not guint.Chris Maynard3-3/+3
svn path=/trunk/; revision=35902
2011-02-10Add the rest of the changes from the patch in bug 5924. Squelches someGuy Harris1-94/+3
compiler warnings. svn path=/trunk/; revision=35901
2011-02-10#ifdef → #ifndef.Gerald Combs1-1/+1
svn path=/trunk/; revision=35900
2011-02-10Mark a parameter unused if needed.Gerald Combs1-1/+5
svn path=/trunk/; revision=35899
2011-02-10Add some information based on a Tektronix manual whose name popped up inGuy Harris1-2/+57
an email I found when looking for some other stuff and which I then found with a Google search. svn path=/trunk/; revision=35898
2011-02-10Remove a bunch of prototypes in airpcap_dlg.h for functions which areGerald Combs2-584/+420
now static. Make another function static. svn path=/trunk/; revision=35897
2011-02-10Modify proto_tree_add_bytes_format() and proto_tree_add_bytes_format_value()Jeff Morriss18-145/+127
so that if the start_ptr is NULL the bytes are extracted from the given TVB using the given offset and length. Replace a bunch of: proto_tree_add_bytes_format*(tree, hf, tvb, offset, length, tvb_get_ptr(tvb, offset, length), [...]) with: proto_tree_add_bytes_format*(tree, hf, tvb, offset, length, NULL, [...]) svn path=/trunk/; revision=35896
2011-02-10Obtained from Thomas Dreibholz: Update SCTP PPIDs.Michael Tüxen7-18/+56
svn path=/trunk/; revision=35895
2011-02-10Added a dissector table for AttributeId localForm.Stig Bjørlykke3-36/+70
Use correct object identifier in ModificationList. svn path=/trunk/; revision=35894
2011-02-10- Add message name to info col in case of SERVICE REQUEST.Anders Broman1-210/+209
- Get rid of check_col - proto_tree_add_item -> ENC_BIG_ENDIAN svn path=/trunk/; revision=35893
2011-02-09Use tvb_bytes_to_str_punct() instead of a homegrown version.Jeff Morriss1-41/+2
svn path=/trunk/; revision=35892
2011-02-09Use tvb_bytes_to_str_punct() instead of bytestring_to_str(tvb_get_ptr(), ...)Jeff Morriss2-6/+6
svn path=/trunk/; revision=35891
2011-02-09Register ett_gtp_bcm.Jeff Morriss1-12/+13
Replace some tabs with spaces. svn path=/trunk/; revision=35890
2011-02-09From Grzegorz Szczytowski:Jaap Keuter2-11/+41
Update of packet-e212.c dissector according to local national regulatory MNC assignment document. www.uke.gov.pl/uke/redir.jsp?place=galleryStats&id=24439 svn path=/trunk/; revision=35889
2011-02-09Accommodate the CMake build on Ubuntu 10.10.Jaap Keuter1-0/+1
svn path=/trunk/; revision=35888
2011-02-09A couple of dissectors have/need an NTP-to-nstime routine, so put it inJeff Morriss4-70/+23
packet-ntp and export it to the other dissectors. Move some macros (now) only used in packet-ntp.c into that file. svn path=/trunk/; revision=35887
2011-02-09Rename ntp_fmt_ts() to tvb_ntp_fmt_ts() and make it take a pointer to a TVB andJeff Morriss3-5/+5
an offset instead of (generally) a pointer into the TVB. Then use the standard accessor functions to get data out of the TVB. svn path=/trunk/; revision=35886
2011-02-09Rewrite this dissector's NTP-to-nstime routine to take a TVB and an offsetJeff Morriss1-7/+9
instead of a pointer into the TVB. Then use the standard accessor functions to get data out of the TVB. svn path=/trunk/; revision=35885
2011-02-09Document that NTP times can be added with proto_tree_add_item().Jeff Morriss1-5/+21
svn path=/trunk/; revision=35884
2011-02-09Add NTP times using proto_tree_add_item().Jeff Morriss3-53/+42
Replace a couple not-very-descriptive blurbs with NULL. svn path=/trunk/; revision=35883
2011-02-08From Holger Freyther:Anders Broman1-1/+11
Fix the GSMTAP to TETRA table GSMTAP has the BSCH at 1... this means the table needs to have 9 entries, the first being 0. -------------------------------------------------------------------------------- https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5659 svn path=/trunk/; revision=35882
2011-02-08Add 3GPP Requesting-Node-Type AVP: it's old but apparently still out there.Jeff Morriss1-352/+359
svn path=/trunk/; revision=35881
2011-02-08from Václav Horčák:Anders Broman1-8/+14
Bug 5663 - [PATCH] Fix for MEGACO dissector context tracking. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5663 svn path=/trunk/; revision=35880
2011-02-08- Use ENC_BIG_ENDIAN.Anders Broman1-428/+428
- GSM_A_PDU_TYPE_BSSMAP. svn path=/trunk/; revision=35879
2011-02-08Don't look at any of the fields that come from the Auxiliary SecurityGuy Harris1-8/+15
Header unless there *is* an Auxiliary Security Header. svn path=/trunk/; revision=35878
2011-02-08Fix compilation problem for GTK+ < 2.18Stephen Fisher1-2/+2
graph_analysis.c(1450): error C2039: 'allocation' : is not a member of '_GtkStyle' svn path=/trunk/; revision=35877
2011-02-08Add NTP times using proto_tree_add_item().Jeff Morriss4-61/+33
svn path=/trunk/; revision=35876
2011-02-08Add support for 4-byte NTP times (only the seconds) in proto_tree_add_item().Jeff Morriss2-43/+48
Use it in packet-diameter.c . Eliminate an unnecessary local variable. svn path=/trunk/; revision=35875
2011-02-08Build with pre-2.18 GTK+es.Guy Harris1-2/+8
svn path=/trunk/; revision=35874
2011-02-08Rename some hf_... vars so name starts with hf_docsis_cmstatusBill Meier1-77/+77
svn path=/trunk/; revision=35873
2011-02-08More -DGSEAL_ENABLE cleanup in preparation for GTK+ 3.0...Stephen Fisher3-8/+8
svn path=/trunk/; revision=35872
2011-02-08The checkAPI script doesn't understand arrays of value_string tables,Guy Harris1-116/+123
and that flavor of two-dimensional array requires you to declare a maximum size for the value_string tables in the array. Don't use an array of value_string tables. svn path=/trunk/; revision=35871
2011-02-08More -DGSEAL_ENABLE cleanup (hopefully without breaking anything)...Stephen Fisher3-47/+237
svn path=/trunk/; revision=35870
2011-02-08#if 0 code related to unused "docsis" dissector table;Bill Meier6-3369/+3307
Use consistent indentation & other whitespace cleanup. svn path=/trunk/; revision=35869
2011-02-07Fix bug #5657: Update my mail address Stephen Fisher3-3/+3
svn path=/trunk/; revision=35868
2011-02-07From Masashi Honma:Jaap Keuter1-16/+156
Currently the Wireshark does not support Primary Device Type dissection. I made a patch for the dissection based on "Wi-Fi Simple Configuration Specification DRAFT Version 2.0.0.51". svn path=/trunk/; revision=35867
2011-02-07From Hendrik Robbel:Jaap Keuter3-0/+294
Dissector for DOCSIS 3.0 CM-STATUS Report Messages. svn path=/trunk/; revision=35866
2011-02-07Fix parameters to gtk_widget_get_allocation() call.Jaap Keuter2-2/+2
svn path=/trunk/; revision=35865
2011-02-07from Holger Freyther:Anders Broman1-23/+92
gsmtap: Update header file, add tetra support 0001 Minor cleanup - made it look crocked in visual studio, changed bu hand. 0002 Update the definitions from the 'upstream' source 0003 First bits of tetra decoding included in GSMTAP 0004 Pass the tetra PDUs to the TETRA decoder Changed def. of gsmtap_to_tetra to make it compile. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5659 svn path=/trunk/; revision=35864