summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-09-16Convert each of the address.h macros to inline functions. Gerald Combs3-116/+214
Document each function. Note that we now call tvb_get_ptr() before modifying the address in tvb_set_address() and tvb_set_address_hf(). The caller doesn't have to worry about doing that any more. Add add_address_to_hash64(). svn path=/trunk/; revision=52106
2013-09-16Don't print a warning about missing svn id when the argument is notJörg Mayer1-1/+4
a file. Warn about the "wrong" filetype and continue svn path=/trunk/; revision=52105
2013-09-16Read the local services file.Anders Broman1-0/+24
svn path=/trunk/; revision=52104
2013-09-16Don't call getservbyport() on unresolved ports - it's expensive.Anders Broman1-30/+8
We should read the services file in initialize_services instead. svn path=/trunk/; revision=52103
2013-09-16Add stream information to the hint label. Update our hint more often.Gerald Combs3-18/+48
Add a "to do" list. svn path=/trunk/; revision=52102
2013-09-16Trivial: Fix typo.Chris Maynard1-4/+4
svn path=/trunk/; revision=52101
2013-09-16Remove a bunch more set-but-no-longer-used variables.Jeff Morriss3-18/+6
svn path=/trunk/; revision=52100
2013-09-16Remove set-but-no-longer-used variable.Jeff Morriss1-5/+3
svn path=/trunk/; revision=52099
2013-09-16Convert proto_tree_add_uint_format to proto_tree_add_uint_format_value if ↵Michael Mann60-463/+374
hf_ field name is the first part of the formatted string. This was all manual inspection and most cases were either: 1. Case sensitivity differences between hf_ field name and formatted string. 2. Unnecessary whitespace between hf_ field name and colon in formatted string There are cases where the hf_ field name doesn't quite match the proto_tree_add_uint_format, but it's close enough that one of them should be "right", I'm just not sure which is, I just know the string in proto_tree_add_uint_format is the one displayed. svn path=/trunk/; revision=52098
2013-09-16Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=52097
2013-09-16From Peter Wu via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9144Alexis La Goutte1-1/+1
Update TLS Ciphers The attached trivial patch corrects the digest (SHA) length for TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA svn path=/trunk/; revision=52096
2013-09-16Make sure we don't tap our packets twice. Give the graph has focus afterGerald Combs1-3/+5
we redraw it. svn path=/trunk/; revision=52095
2013-09-16Fix graph type selection.Gerald Combs1-13/+11
svn path=/trunk/; revision=52094
2013-09-16Another attempt at axis scaling. Tweak the appearance a little.Gerald Combs1-6/+18
svn path=/trunk/; revision=52093
2013-09-15When caclulating throughput, only subtract what we've added. Try to fixGerald Combs1-20/+15
axis scaling. svn path=/trunk/; revision=52092
2013-09-15mark unused parameterMartin Kaiser1-1/+1
svn path=/trunk/; revision=52091
2013-09-15Apparently some platforms don't like $ in their macro names. Fix it.Evan Huus1-4/+4
svn path=/trunk/; revision=52090
2013-09-15Tweak mq macro and checkAPI to avoid false positives - "garbage"Evan Huus2-3/+2
(like a #define) at the beginning of a line before a value_string no longer matches so a #define that includes the beginning of a value_string doesn't confuse the script. svn path=/trunk/; revision=52089
2013-09-15unused variable 'conversation'Anders Broman1-1/+1
svn path=/trunk/; revision=52088
2013-09-15emem -> wmem (except uat or init routines)Pascal Quantin14-107/+116
svn path=/trunk/; revision=52087
2013-09-15Comment out hf_ var whose use is also commented out at least for now.Evan Huus1-2/+2
svn path=/trunk/; revision=52086
2013-09-15From RobiOneKenobi via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9072Evan Huus6-2860/+13444
Substantial enhancements to MQ protocol: all Structure, MSG_REQUEST/ASYNC_RESP, MQ Multi Segment are decoded until version 7.1/7.5 svn path=/trunk/; revision=52085
2013-09-15Our hash function is no longer commutative (yay!). However, this means that weEvan Huus1-1/+7
no longer get to check both conversation directions at once "for free" because the two orderings actually result in different hashes. Do them one at a time. Sorry Anders, this may or may not cancel out some of the performance gain you were looking for. Either way, the new hash function is still an improvement. Fixes bidirectional conversation lookup, which was conveniently showing up as a DTLS decryption failure in the test suite. Go figure. svn path=/trunk/; revision=52084
2013-09-15Make sure the RTT behavior matches the GTK+ port. Make sure we properlyGerald Combs1-15/+29
select a graph type. svn path=/trunk/; revision=52083
2013-09-15Simplification I noticed while reviewing the wmem conversion: there's no need toEvan Huus1-8/+4
strdup the string built in a strbuf if the scope is the same. Remove the thoroughly unnecessary temporary variable as well. svn path=/trunk/; revision=52082
2013-09-15Add the new hash algorithm to the macro we were already using. Create aEvan Huus2-84/+45
temporary address structure for the port-numbers so we can use the same macro, reducing duplication further. Add modelines. svn path=/trunk/; revision=52081
2013-09-15From Roland Knall via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9145 :Pascal Quantin1-8/+14
openSAFETY: SSDO Abort codes are handled incorrectly svn path=/trunk/; revision=52080
2013-09-15Use a better hash algorithm and add a dialouge to get hastable data.Anders Broman1-0/+2
(missed a file) svn path=/trunk/; revision=52079
2013-09-15Use a better hash algorithm and add a dialouge to get hastable data.Anders Broman6-9/+446
svn path=/trunk/; revision=52078
2013-09-15emem -> wmem for radiusMartin Kaiser1-19/+19
svn path=/trunk/; revision=52077
2013-09-15emem -> wmemMartin Kaiser1-9/+12
svn path=/trunk/; revision=52076
2013-09-15emem -> wmemMartin Kaiser1-7/+7
svn path=/trunk/; revision=52075
2013-09-15No need to use the pinfo poolPascal Quantin1-1/+1
svn path=/trunk/; revision=52074
2013-09-15From Michal Labedzki viaEvan Huus1-103/+704
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9119 Implement the majority of the remaining items from the PN532 spec. svn path=/trunk/; revision=52073
2013-09-15emem -> wmemMartin Kaiser1-33/+44
svn path=/trunk/; revision=52072
2013-09-15A few more dissectors converted to wmemPascal Quantin11-54/+61
svn path=/trunk/; revision=52071
2013-09-15TABs -> spacesMartin Kaiser1-57/+70
add editor modelines svn path=/trunk/; revision=52070
2013-09-15emem -> wmemJörg Mayer2-16/+18
svn path=/trunk/; revision=52069
2013-09-15Add help optionJörg Mayer1-16/+29
List options one by one svn path=/trunk/; revision=52068
2013-09-15emem -> wmemMartin Kaiser1-3/+3
svn path=/trunk/; revision=52067
2013-09-15emem -> wmemMartin Kaiser1-2/+2
svn path=/trunk/; revision=52066
2013-09-15Fix a typoAnders Broman1-1/+1
svn path=/trunk/; revision=52065
2013-09-15Use "cheaper" length check.Anders Broman2-2/+2
svn path=/trunk/; revision=52064
2013-09-15emem -> wmemPascal Quantin20-71/+84
svn path=/trunk/; revision=52063
2013-09-15Fix checkapi warnings (missing id)Jörg Mayer24-126/+295
Replace Makefile.{am,nmake,common} that did not conform by their asn1/c133/ version. svn path=/trunk/; revision=52062
2013-09-15http://url is NOT a c++ style commentJörg Mayer1-1/+1
svn path=/trunk/; revision=52061
2013-09-15Finish asn1 emem -> wmem conversion.Jörg Mayer6-91/+93
Left are snmp and those functions that don't have wmem equivalents. svn path=/trunk/; revision=52060
2013-09-15emem -> wmem (don't forget about .cnf)Jörg Mayer7-261/+263
svn path=/trunk/; revision=52058
2013-09-15[Automatic manuf, services and enterprise-numbers update for 2013-09-15]Gerald Combs2-1/+47
svn path=/trunk/; revision=52056
2013-09-15More wmem conversion (leaving uat related functions aside)Pascal Quantin22-164/+186
svn path=/trunk/; revision=52055