aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-12-13Add a "captype" file that just reports the type of a capture file, basedGuy Harris7-15/+318
on what libwiretap thinks it is. Update some comments to reflect the death of the hack used to include (libwiretap) plugin support in programs not built with libwireshark. svn path=/trunk/; revision=54015
2013-12-13Fix packet-lapd.c:186: warning: comparison between signed and unsigned. Chris Maynard1-1/+1
svn path=/trunk/; revision=54014
2013-12-13Fix 4 instances of Visual Studio Code Analysis warnings C6001: Using ↵Chris Maynard1-4/+4
uninitialized memory 'pduType2', 'numberCapabilities' (2x), and 'pduType' svn path=/trunk/; revision=54013
2013-12-13The IxVeriWave heuristic now gets more false positives (after, IGuy Harris1-1/+6
suspect, the change to handle VWR files with no packets); shuffle it after all the types we've seen misidentified as VWR files. svn path=/trunk/; revision=54012
2013-12-13Let's see if this fixes VS Code Analysis warnings:Bill Meier1-3/+3
C6297: Arithmetic overflow: 32-bit value is shifted, then cast to 64-bit value. \ Results might not be an expected value svn path=/trunk/; revision=54011
2013-12-13Fix Visual Studio Code Analysis warning C6204: Possible buffer overrun in ↵Chris Maynard1-2/+2
call to 'memcpy': use of unchecked parameter 'data_len' svn path=/trunk/; revision=54010
2013-12-13Try to appease Visual Studio Code Analysis to avoid a false warning (as far ↵Chris Maynard1-4/+3
as I can tell), namely: warning C6054: String 'forbidden' might not be zero-terminated svn path=/trunk/; revision=54009
2013-12-13Fix Visual Studio Code Analysis warning C6001: Using uninitialized memory ↵Chris Maynard1-1/+1
'obj_type' svn path=/trunk/; revision=54008
2013-12-13Switch the cherry-pick merge strategy to "recursive + theirs", whichGerald Combs1-1/+4
seems to pull in fewer changes and be less prone to conflitcs. This was the case for r53086, at least. Add "-x" which adds a "cherry picked from..." line to the commit message. Show a diff before pushing. svn path=/trunk/; revision=54007
2013-12-13netlink: update Jakub Zawadzki5-9/+225
- add netlink socket diag, - dissect socket diag meminfo structures, - add prototypes. svn path=/trunk/; revision=54006
2013-12-13Do one or more of the following:Bill Meier19-11342/+13269
- Convert "4 space tabs" to spaces; - Remove some unneeded initializers; - 'offset++' --> 'offset += 1' for consistency; - Reformat hf[] entries; - Rework/add whitespace; - Adjust editor modelines (set tab-width to 8). svn path=/trunk/; revision=54005
2013-12-13Trivial: Spaces -> tabsChris Maynard1-11/+8
svn path=/trunk/; revision=54004
2013-12-13Fix redirection.Gerald Combs1-1/+1
svn path=/trunk/; revision=54003
2013-12-13Trivial: Spaces -> tabsChris Maynard1-6/+6
svn path=/trunk/; revision=54002
2013-12-13Don't cherry-pick if we have changes.Gerald Combs1-0/+6
svn path=/trunk/; revision=54001
2013-12-13Add .gitreviewGerald Combs1-0/+1
svn path=/trunk/; revision=54000
2013-12-12Add a "backport-change" script which cherry-picks a proposed backportGerald Combs2-1/+142
and pushes it to Gerrit. svn path=/trunk/; revision=53999
2013-12-12In one or more of the files:Bill Meier8-1423/+1426
- Create/use some extended value-strings; - Remove some unneeded initializers; - 'offset++' --> 'offset += 1' for consistency; - Set editor modelines 'tab-width' to 8 (not 4); - tabs --> spaces (to match editor modelines); - Rework/add whitespace. svn path=/trunk/; revision=53998
2013-12-12From Michael Lum via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9554 :Pascal Quantin3-76/+77
GSM SMS: remove some globals and expose some UDH fields through dis_field_udh() svn path=/trunk/; revision=53997
2013-12-12The dissector table has never been used, and the name of the dissectorGuy Harris1-5/+0
table doesn't correspond to any obvious field, so I'm not sure why it needs to exist. Remove it. svn path=/trunk/; revision=53996
2013-12-12Appease Visual Studio Code Analysis by ensuring that the string in csec[] is ↵Chris Maynard1-0/+1
NULL-terminated. svn path=/trunk/; revision=53995
2013-12-12Get rid of a dissector table that has never been used.Guy Harris1-21/+0
Get rid of a field that was hidden, always set to 0, and not obviously used anywhere. svn path=/trunk/; revision=53994
2013-12-12Create/use two extended value-strings;Bill Meier1-198/+602
Reformat some hf[] entries; Reformat a long line; tabs --> spaces 9to match editor-modelines); Rework/Add whitespace. svn path=/trunk/; revision=53993
2013-12-12DHCPv6: update list of message types and options (from IANA)Jakub Zawadzki1-0/+72
svn path=/trunk/; revision=53992
2013-12-12Reformat some hf[] entries;Bill Meier1-2170/+2987
Reformat some long lines; tabs --> spaces (to match editor modelines); Rework/add whitespace; svn path=/trunk/; revision=53991
2013-12-12Create/use an extended value-string;Bill Meier1-1353/+1409
Localize some vars; Remove some unneeded initializers; Reformat some hf[] entries; Reformat a long commenty for readability; Break up some long lines; Use consistent indentation; Rework/add whitespace; Fix inconsistent editor modelines. svn path=/trunk/; revision=53990
2013-12-12In r12060, use of the "aim.family" subdissector table was eliminated, inGuy Harris1-5/+0
favor of the AIM dissector having its own private way of handing off to subdissectors. Get rid of the subdissector table. svn path=/trunk/; revision=53989
2013-12-12Reformat hf[] entries;Bill Meier1-151/+220
tabs --> spaces to match editor modelines; Rework/add whitespace. svn path=/trunk/; revision=53988
2013-12-12Remove 'if (tree)' around (indirect) calls to expert functions;Bill Meier1-231/+256
Reformat hf[] entries; 'offset++' --> 'offset += 1' for consistency; tabs --> spaces to match editor modelines; Rework/add whitespace. svn path=/trunk/; revision=53987
2013-12-12Remove two text arrays (flagged with _U_);Bill Meier1-422/+423
Remove unneeded initializers; Change tabs --> spaces (to match edirtor modelines); Rework/add some whitespace. svn path=/trunk/; revision=53986
2013-12-12(Trivial):Bill Meier1-61/+63
tabs --> spaces (to match editor modelines); 'offset++' --> 'offset += 1' for consistency; Break up a long text constant; Reformat some lines for readability. svn path=/trunk/; revision=53985
2013-12-12Fix Visual Studio Code Analysis warning C6385: Invalid data: accessing ↵Chris Maynard1-1/+1
'tag_to_type', the readable size is '136' bytes, but '540' bytes might be read svn path=/trunk/; revision=53984
2013-12-12Use a consistent indentation: 4 spaces;Bill Meier1-1841/+1841
Use #if 0/#endif instead of '/* */' to comment out some code; svn path=/trunk/; revision=53983
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-12-12Fix Visual Studio Code Analysis warning C6287: Redundant code: the left and ↵Chris Maynard1-1/+1
right sub-expressions are identical svn path=/trunk/; revision=53981
2013-12-12(Trivial);Bill Meier1-13/+14
- localize some vars; - Specify 'tab-width: 8' (not 4) in editor modelines; - tabs --> spaces; svn path=/trunk/; revision=53980
2013-12-12(Trivial)Bill Meier1-5/+5
tabs --> spaces to match editor modelines; Specify 'tab-width: 8' (not 4) in editor modelines; svn path=/trunk/; revision=53979
2013-12-12(Trivial)Bill Meier14-4279/+4279
- Fix indentation to match editor modelines (tabs-->spaces); - Rework/add some whitespace; svn path=/trunk/; revision=53978
2013-12-12remove unused dissector tablesMartin Kaiser3-13/+0
http://www.wireshark.org/lists/wireshark-dev/201312/msg00137.html svn path=/trunk/; revision=53977
2013-12-12correct the function names in order to fix compile errorsMartin Kaiser2-4/+4
svn path=/trunk/; revision=53976
2013-12-12Trivial: Spaces -> tabs.Chris Maynard1-38/+38
svn path=/trunk/; revision=53975
2013-12-12Move proto_reg_handoff...() to the file end as per convevntion;Bill Meier1-216/+255
Reformat certain lines to use a consistent style; tabs --> spaces (to match the editor modelines); Rework some whitespace; svn path=/trunk/; revision=53974
2013-12-12Fix Coverity CID 1135557: Structurally dead code, by moving the break ↵Chris Maynard1-4/+4
statement to the most sensible place. svn path=/trunk/; revision=53973
2013-12-12Try to fix "initializer element is not computable at load time"Anders Broman1-21/+82
svn path=/trunk/; revision=53972
2013-12-12- Forward declaration of register functions.Anders Broman38-1/+136
svn path=/trunk/; revision=53971
2013-12-12Move proto_reg_handoff...() to file end as per convention;Bill Meier4-1375/+1679
Reformat various hf[] entries; #include params.h (not prefs.h); 'offset++' --> 'offset += 1' for consistency; Localize some variable defintions; Tabs --> spaces (to match editor modelines); Rework some whitespace; svn path=/trunk/; revision=53970
2013-12-12Reject the packet if info is NULL under conditions where it'll be used.Chris Maynard1-0/+4
svn path=/trunk/; revision=53969
2013-12-12Create/use a number of extended value-strings;Bill Meier14-1547/+1796
Remove or comment out dups from several value-string arrays; Sort a number of value-string arrays; Reformat many hf[] entries; Remove some unneeded initializers; Add editor-modelines; Use consistent indentation; Reformat whitespace. svn path=/trunk/; revision=53968
2013-12-12Trivial: Tab -> spaces.Chris Maynard1-2/+2
svn path=/trunk/; revision=53967
2013-12-12Reject the packet if data is NULL under conditions where it'll be used.Chris Maynard1-0/+4
svn path=/trunk/; revision=53966