aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-06-20Fix for bug 4875:Jaap Keuter1-1/+8
Don't hint at a local User's Gude when there isn't one. svn path=/trunk/; revision=33267
2010-06-20Added "Hide Column" functionality.Stig Bjørlykke8-21/+279
svn path=/trunk/; revision=33266
2010-06-20Added an expert info for "4 NOP in a row" in IP and TCP.Stig Bjørlykke4-11/+24
svn path=/trunk/; revision=33265
2010-06-20Revert back to the old Flags entry.Stig Bjørlykke1-2/+6
Add number of bits used for Flags in the description. svn path=/trunk/; revision=33264
2010-06-20[Automatic manuf and enterprise-numbers update for 2010-06-20]Gerald Combs2-14/+128
svn path=/trunk/; revision=33260
2010-06-20From Holger Freyther: Jaap Keuter1-8/+20
The current implementation assumes that the IPA protocol header is three byte. This is true for TCP but not for packets sent over UDP, which uses four bytes. From me: Improve heuristic and offset tracking. svn path=/trunk/; revision=33259
2010-06-20From KATAOKA Toshihiro:Jaap Keuter1-1/+4
The sequence number in 3GPP NAS EPS(TS24.301) cyphered PDU is outside of ciphered text. svn path=/trunk/; revision=33258
2010-06-20From KATAOKA Toshihiro:Anders Broman1-4/+544
3GPP Diameter S6a flags. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4893 Modified to use tfs_set_notset. svn path=/trunk/; revision=33257
2010-06-19From tieuthunhi via bug 4887:Stig Bjørlykke3-0/+353
Add support for Gigamon headers (timestamp, source port, length, etc) that are inserted by Gigamon network equipments. From me: Various cleanup: - Register to "eth.trailer" heuristics for trailer. - Use standard dumping of timestamp. - Rewrote gmhdr_plfm_str handling. - Dump srcport details in a subtree. - Removed packte-gmhdr.h. - Ensure the while-loop will end. svn path=/trunk/; revision=33256
2010-06-19Use top level tree when using dissectors from "eth.trailer" heuristics.Stig Bjørlykke5-9/+9
svn path=/trunk/; revision=33255
2010-06-18Add a few deprecated GObject fcns;Bill Meier1-6/+10
Fix some typos and capitalization. svn path=/trunk/; revision=33254
2010-06-18From Jim Young:Anders Broman2-1/+127
The attached patch simply documents a long supported but hidden tshark -G option. Tshark's print_usage() has been augmented as well as the tshark man page. svn path=/trunk/; revision=33253
2010-06-18Fix the check for disable_lua.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=33252
2010-06-18Add new strings/dissector function for signalling RRC messages that will addMartin Mathieson5-11/+123
lte_rrc root to the protocol tree. Makes filtering on call signalling easier. TODO: same for other RRC entry points... svn path=/trunk/; revision=33251
2010-06-18Add the Gigamon ethertype.Anders Broman2-0/+5
svn path=/trunk/; revision=33250
2010-06-18OK, I checked the Microsoft spec; give some information on that.Guy Harris1-3/+17
svn path=/trunk/; revision=33249
2010-06-17Expand some comments.Guy Harris1-1/+8
svn path=/trunk/; revision=33248
2010-06-17Add deprecated from GLib 2.24Bill Meier1-2/+7
svn path=/trunk/; revision=33247
2010-06-17Add GTK deprecated from GTK 2.20.Bill Meier1-3/+48
svn path=/trunk/; revision=33246
2010-06-17Commit re-generated packet-fix.h (which now has $Id$).Bill Meier1-0/+3
(Left out from the previous commit). svn path=/trunk/; revision=33245
2010-06-17Include $Id$ when generating packet-fix.h;Bill Meier1-0/+3
Commit re-generated packet-fix.h. svn path=/trunk/; revision=33244
2010-06-17Enable Lua by default.Stig Bjørlykke1-2/+5
svn path=/trunk/; revision=33243
2010-06-17Work out better whether RLC segment is a complete upper-layer PDU or not.Martin Mathieson1-2/+2
svn path=/trunk/; revision=33242
2010-06-17Don't refer to file-static variables as extern (my gcc didn't like it).Martin Mathieson1-5/+0
svn path=/trunk/; revision=33241
2010-06-16Handle 64-bit file offsets in ReadAndX and WriteAndX.Guy Harris1-34/+47
svn path=/trunk/; revision=33240
2010-06-16Go back to 64-bit sizes, but, before passing those sizes toGuy Harris2-10/+28
g_try_malloc() or g_try_realloc(), check whether they fit in a gsize and: if not, just pretend the allocation failed; if so, cast them to gsize to squelch compiler warnings. svn path=/trunk/; revision=33239
2010-06-16Remove C++ comment.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=33238
2010-06-16Use gsize for file offset.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=33237
2010-06-16From Hitoshi Irino via bug 4883:Stig Bjørlykke1-91/+342
Support NetFlow exported from Cisco ASA5500 series. From me: Fixed some hf description entries. svn path=/trunk/; revision=33236
2010-06-16Use gsize for file sizes.Stig Bjørlykke1-4/+4
svn path=/trunk/; revision=33235
2010-06-16Export smb_fid_types.Guy Harris1-1/+2
svn path=/trunk/; revision=33234
2010-06-16From Joe Eykholt via bug 4882:Stig Bjørlykke2-2/+133
Adds decodes for the FCoE Initialization Protocol features being added for VN_port to VN_port (VN2VN) point-to-multipoint support. svn path=/trunk/; revision=33233
2010-06-16Cast bytes_left down to an int once we've established it will fit.Guy Harris1-1/+1
svn path=/trunk/; revision=33232
2010-06-16Handle WTAP_ERR_SHORT_WRITE in file_write_error_message().Guy Harris2-7/+43
In eo_save_entry(), don't assume you can write the entire object in a single write call - if the object is big enough (which would require a 64-bit address space), and you're not lucky enough to be running on UN*X (which means LP64, so size_t and ssize_t are big enough for the entire object), you can't. svn path=/trunk/; revision=33231
2010-06-15Cleanup header file define guards.Stig Bjørlykke40-69/+148
svn path=/trunk/; revision=33230
2010-06-15Changed Jose Pico's email, added David Perez as co-author.Stig Bjørlykke1-1/+5
svn path=/trunk/; revision=33229
2010-06-15Remove #include <inttypes.h>.Stig Bjørlykke1-2/+0
svn path=/trunk/; revision=33228
2010-06-15From David Perez & Jose Pico from Taddong S.L. via bug 4451:Stig Bjørlykke9-14/+722
This functionality keeps track of all SMB objects contained in a capture, and is able to export to a file a full or partial captured file that has been transfered through the SMB protocol. In a partial capture, the holes produced by the non-captured information are filled out with zeros. It includes the needed modifications of the SMB dissector in the way it keeps track of the opened SMB files and also to feed the eo_smb tap listener. svn path=/trunk/; revision=33227
2010-06-15From Holger Freyther:Anders Broman1-87/+87
Cosmetic patch to fix Optional/Conditional mismatch. svn path=/trunk/; revision=33226
2010-06-14Update SCTP PPIDs.Michael Tüxen2-1/+5
svn path=/trunk/; revision=33225
2010-06-14From Jouni Malinen: Fix: RSN capabilities field in IEEE 802.11 RSN IE is ↵Bill Meier1-9/+9
parsed in incorrect byte order Note: this bug was introduced in SVN #32342 [3/31/10] and thus was only present in Development Wireshark versions. From me: Display 'mobility_domain_mdid' as little-endian (to be verified) svn path=/trunk/; revision=33224
2010-06-14Fix Bug #4871: Wrong Ack value in TCP flow graph when using relative ↵Bill Meier1-1/+4
sequence numbers. See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4871 svn path=/trunk/; revision=33223
2010-06-13The .dmg packages can come in 32-bit and 64-bit flavors. Name themGerald Combs1-5/+12
accordingly. svn path=/trunk/; revision=33222
2010-06-13Add packet-gopher.c from rev 33220.Jörg Mayer1-0/+1
svn path=/trunk/; revision=33221
2010-06-13Add a Gopher (RFC 1436) dissector.Gerald Combs2-0/+324
svn path=/trunk/; revision=33220
2010-06-13Add info to the "Enable OID resolution" tooltip that if 'True' then the 'SMI ↵Bill Meier1-2/+3
paths' and the 'SMI modules' preferences will be shown; Fix a comment. svn path=/trunk/; revision=33219
2010-06-13[Automatic manuf and enterprise-numbers update for 2010-06-13]Gerald Combs2-13/+198
svn path=/trunk/; revision=33215
2010-06-13Add Copy (to clipboard) to expert item popup menu.Martin Mathieson2-2/+21
svn path=/trunk/; revision=33214
2010-06-13Rename some variables; At least one ('end') seemed to confuse the Windows ↵Bill Meier1-14/+15
debugger; Also: Udate some coments. svn path=/trunk/; revision=33213
2010-06-13Fix Bug #4868; "Wireshark crash selecting Inter-Asterisk exchange v2 packet ↵Bill Meier1-1/+1
data" See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4868 A field length was being set incorrectly (too large) thus causing packet_hex_apply_reverse_tag() to run off the end of a text_view buffer (thus causing a crash) when attempting to highlight the field bytes in the hex-view pane. ToDo: Add some sanity checking in packet_hex_apply_reverse_tag(). svn path=/trunk/; revision=33212