aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-09-16Turn on ASLR via /DYNAMICBASE and DEP via SetProcessDEPPolicy().Gerald Combs11-23/+44
svn path=/trunk/; revision=34137
2010-09-16Add "(BE)" to the big endian representations of the ICMP identifier andStephen Fisher1-2/+2
sequence number fields to match the "(LE)" ones. svn path=/trunk/; revision=34136
2010-09-16#if out ui_desc_conv_filter_popup to get the builds going (it looks like it ↵Jeff Morriss1-62/+64
should be used but it isn't currently). svn path=/trunk/; revision=34135
2010-09-16Make "4 NOP in a row" work again after changing the NOP name for TCP and IPStig Bjørlykke1-2/+3
in revisions 34095 and 34097. svn path=/trunk/; revision=34134
2010-09-16Fix a typo.Anders Broman1-1/+1
svn path=/trunk/; revision=34133
2010-09-16Remove C++ comments.Guy Harris1-5/+9
svn path=/trunk/; revision=34132
2010-09-16menus.c:1508: warning: unused parameter 'current'Anders Broman1-1/+1
menus.c:1508: warning: unused parameter 'user_data' Mark parameters as unused. svn path=/trunk/; revision=34131
2010-09-16Use GUIManager for the pop-up:s.Anders Broman1-7/+7
Can be dissabled by commenting out #define MENUS_USE_UIMANAGER 1 svn path=/trunk/; revision=34130
2010-09-15Also rename inet_ntop() on WindowsJeff Morriss2-5/+7
svn path=/trunk/; revision=34129
2010-09-15From Juha Siltanen :Sake Blok2-63/+95
When sorting a capture by protocol, some RTP packets are shown only as FLIP, even though the dissection windows shows the RTP tree. (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5215) svn path=/trunk/; revision=34128
2010-09-15Add more GUIManager code #ifdef:ed out.Anders Broman1-38/+333
The popups should be working now exept for protocol help. Help with testing and cleaning up apreciated. GTK 2.6 requred, I'll look into that too later if no one beats me to it. svn path=/trunk/; revision=34127
2010-09-15Bug #5127 from Guenter Strubreiter:Stephen Fisher2-1/+2
for avoiding doubled definition of a table needed also by a tcap subdissector plugin a definition in libwirshark.def is needed: isup_calling_partys_category_value Me: Change extern to WS_VAR_IMPORT in header file svn path=/trunk/; revision=34126
2010-09-15Missed this one (check_col() removal)Martin Mathieson1-29/+17
svn path=/trunk/; revision=34125
2010-09-15Remove a few more calls to check_col()Martin Mathieson5-92/+49
svn path=/trunk/; revision=34124
2010-09-15Add expert info for timing adjustment control message, and tweak a label.Martin Mathieson1-3/+8
svn path=/trunk/; revision=34123
2010-09-15Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5160 differently:Jeff Morriss2-1/+12
On Windows, rename inet_pton() to ws_inet_pton() so that builds on Vista or later systems (that have inet_pton() natively) will still work on pre-Vista systems. svn path=/trunk/; revision=34122
2010-09-15Revert 34081 and 34093 in preparation for a cleaner fix.Jeff Morriss2-23/+23
svn path=/trunk/; revision=34121
2010-09-15Follow up to bug 5209 and rev 34115:Jeff Morriss2-12/+26
%hh is C99 so remove it from packet-ssl-utils and add it to the banned list (similar to %ll) in checkAPIs.pl . svn path=/trunk/; revision=34120
2010-09-14Clean up the icmp info column per discussion in bug #4014.Stephen Fisher1-6/+16
Change to using new ENC_[BIG|LITTLE]_ENDIAN instead of FALSE and TRUE in the proto_tree_add_item() calls for the identifier and sequence numbers. svn path=/trunk/; revision=34119
2010-09-14Add more GUIManager code #ifdef:ed outAnders Broman1-28/+671
svn path=/trunk/; revision=34118
2010-09-14Remove duplicate register_all_protocol_handoffs entryStephen Fisher1-1/+0
svn path=/trunk/; revision=34117
2010-09-14Bug #5211 from Guenter Strubreiter:Stephen Fisher1-0/+12
for writing a TCAP subdissector as a plugin some functions are needed in libwireshark.def for export svn path=/trunk/; revision=34116
2010-09-14From Cal Turney via bug 5209:Gerald Combs1-10/+8
Decode of SETCLIENTID calls in the Windows x86 version fail with "[Dissector bug, protocol NFS: STATUS_ACCESS_VIOLATION: dissector accessed an invalid memory address]". This error occurs in packet-nfs.c in dissect_nfs_clientaddr4() where vars 'protocol' and 'universal_ip_address' get stepped on following the call to scanf(). The b1-b10 vars are declared as quint8. While "hh" modifier used in the scanf() is documented in Linux to correspond to an a signed/unsigned char arg, I cannot find a similar designation in Windows (MSDN). The Windows C compiler interprets %hhu as corresponding to a int16 rather than int8. svn path=/trunk/; revision=34115
2010-09-14From tieuthunhi:Anders Broman1-3/+6
Add new time source for Gigamon header. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5210 svn path=/trunk/; revision=34114
2010-09-14From Vincent Helfre:Anders Broman1-2/+2
Incorrect decoding of List of ARFCN in BCCH frequency list. When the range 1024 is selected, it can happen that 2 bytes need to be read for W1, and also for W2. In the current version, when W1 ends on a byte boundary, W2 will get an incorrect value, since it will be truncated by 1 bit. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5214 svn path=/trunk/; revision=34113
2010-09-13Add more GUIManager code #ifdef:ed outAnders Broman1-48/+269
svn path=/trunk/; revision=34112
2010-09-13Attempt to fix the stack overflow reported atGerald Combs1-13/+25
http://seclists.org/bugtraq/2010/Sep/87 . Unfortunately no one from the NCNIPC pen test team has contacted us or provided a sample capture so the fix hasn't been verified. svn path=/trunk/; revision=34111
2010-09-13From Yaniv Kaul:Anders Broman1-3/+25
[PATCH] Add SSL cipher 'Transport Layer Security (TLS) Renegotiation Indication Extension' (RFC 5746) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5207 svn path=/trunk/; revision=34110
2010-09-12set_menu_sensitivity() is used only if MENUS_USE_UIMANAGER is defined,Guy Harris1-7/+10
so define it only if MENUS_USE_UIMANAGER is defined. Clean up indentation. svn path=/trunk/; revision=34109
2010-09-12Get rid of /* within comment, clean up white space.Guy Harris1-3/+3
svn path=/trunk/; revision=34108
2010-09-12Remove deprecated check_col().Anders Broman1-16/+10
svn path=/trunk/; revision=34107
2010-09-12Add more GUIManager code #ifdef:ed outAnders Broman1-171/+618
svn path=/trunk/; revision=34106
2010-09-12[Automatic manuf and enterprise-numbers update for 2010-09-12]Gerald Combs2-3/+174
svn path=/trunk/; revision=34102
2010-09-12Decode SLL payloads using a dissector table based on sll.ltype.Balint Reczey5-39/+23
The idea and the original patch came from Sebastian Reichel <elektranox@gmail.com> in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594390 svn path=/trunk/; revision=34101
2010-09-10Only check for 4 NOP in a row within a uint32 boundary.Stig Bjørlykke1-2/+4
svn path=/trunk/; revision=34100
2010-09-10From Martin Peylo via bug 5198:Stig Bjørlykke3-16/+72
Added missing OIDs in CRMF (RFC 4211) dissector. svn path=/trunk/; revision=34099
2010-09-10Use absolute paths in link_directories.Stig Bjørlykke1-5/+5
svn path=/trunk/; revision=34098
2010-09-10Follow TCP and expand description for "NOP" and "EOL" options to ↵Stig Bjørlykke1-2/+2
"No-Operation (NOP)" and "End of Options List (EOL)" respectively. svn path=/trunk/; revision=34097
2010-09-10Put the ": %u (multiply by %u)" back on the TCP window scaling option, soStephen Fisher1-3/+6
users don't have to expand the tree to see the details that were there before rev 34094. svn path=/trunk/; revision=34096
2010-09-10Expand description for "NOP" and "EOL" options to "No-Operation (NOP)" andStephen Fisher1-2/+2
"End of Options List (EOL)" respectively. svn path=/trunk/; revision=34095
2010-09-10Enhance the TCP option display for window scaling.Stephen Fisher1-28/+51
svn path=/trunk/; revision=34094
2010-09-10From BBA via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5160 :Jeff Morriss2-22/+22
Followup to 34081: move libwsutil _all_ the way forward so that our inet_pton is always linked in before wsock32's. This means that our Windows-7 Win64 builds (on which there is a native inet_pton in wsock32) will still work on pre-Vista Win64's. svn path=/trunk/; revision=34093
2010-09-10Update dsfield ECN according to RFC3168.Stig Bjørlykke1-18/+20
svn path=/trunk/; revision=34092
2010-09-09Add some hf blurbs (for fields whose description is an acronym)Jeff Morriss1-70/+70
svn path=/trunk/; revision=34091
2010-09-09Remove what appear to be two redundant lines of code (AFAIKT).Bill Meier1-6/+6
svn path=/trunk/; revision=34090
2010-09-09Resolve another issue the Windows buildbots are having after rev 34084:Stephen Fisher1-1/+1
guint8 -> guint16 for th_flags variable in segment struct. svn path=/trunk/; revision=34089
2010-09-08Turn the TCP timestamp option into a subtree to also show the option kind,Stephen Fisher1-67/+101
option length and values with proto_tree_add_item() intead of _add_text(). The options tree still shows the same information as before until the sub- tree is expanded. The goal is to do this with all TCP and IP options. svn path=/trunk/; revision=34088
2010-09-08Mask out the header length from th_flags.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=34087
2010-09-08Make the Windows buildbot happy: guint8 -> guint16 for flags variable inStephen Fisher1-1/+1
definition of tcp_analyze_sequence_number(). svn path=/trunk/; revision=34086
2010-09-08Minor correction to SVN revision 34084: we better only try up to the 9Stephen Fisher1-1/+1
available values in flags[], so we don't run past the end of the array if one of the reserved flags is set. svn path=/trunk/; revision=34085