aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.c
AgeCommit message (Expand)AuthorFilesLines
2012-08-10Use val_to_str_const() where appropriate;wmeier1-1/+1
2012-07-12Add a preference to that when the window scaling options are notmartinm1-5/+73
2012-06-23Do not use same name for filters with incompatible typespascal1-55/+45
2012-06-20Use separate filters for the RTT found on a SACK and the RTT found on amorriss1-89/+132
2012-02-10Since the nonce and reserved bits were added in r34084, tcp.flags is now 12 b...cmaynard1-1/+1
2012-02-08Fixed bug with calculation of bytes in flight.grahamb1-0/+5
2012-02-01Fix some typos.cmaynard1-27/+27
2012-01-04Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-1/+1
2012-01-04From Andrei Maruseac via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=...alagoutte1-0/+448
2011-12-22Appease the buildbots.cmaynard1-2/+2
2011-12-22Revert some of the changes made as part of the patch from bug 6194 committed ...cmaynard1-81/+79
2011-12-03The TCP Packet Mood Option was a cute April 1 RFC, but TCP option 25 isguy1-66/+0
2011-11-08packet_info's in_error_pkt is now a bitfield like in_gre_pkt.cmaynard1-2/+2
2011-11-01Remove comma at the end of several enumerator lists.morriss1-1/+1
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-2/+2
2011-10-16Do some conversions of proto_tree_add_item() 'encoding' arg.wmeier1-2/+2
2011-10-10 Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-a...wmeier1-17/+17
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-au...wmeier1-46/+46
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly referen...wmeier1-3/+3
2011-09-21Whitespace cleanup:wmeier1-8/+8
2011-09-21Fix ex "modeline" so it works;wmeier1-1/+1
2011-09-06Check for valid tcpd, as it may be NULL.stig1-3/+4
2011-08-04Don't call expert_add_info_format() from within an "if (tree)" block. Fixes ...cmaynard1-19/+21
2011-08-04Removed a debug printf.stig1-1/+0
2011-08-03From Dirk Jagdmann via bug 6194:gerald1-68/+54
2011-07-28From Edwin Groothuis:etxrab1-2/+11
2011-07-24Fix a benign bug in the patch from Bug #5795.wmeier1-1/+1
2011-07-24Commit missing parts of Bug #5795 patch (those not committed in SVN 38175 & 3...wmeier1-2/+13
2011-07-23Wrong patch commit in Rev38175...alagoutte1-3/+19
2011-07-23From Edwin Groothuis via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=...alagoutte1-8/+114
2011-07-17Repair "Follow TCP Stream" which got broken by my change in SVN 38056sake1-1/+1
2011-07-15Stop using the conversation index for tcp stream values as the gaps in the nu...sake1-8/+11
2011-07-06From György Szaniszló:etxrab1-5/+14
2011-07-01Since the TCP Flags tree encompasses 12 bits including the 3 reserved bits andcmaynard1-1/+7
2011-07-01I decode_tcp_ports(), don't abort processing zero window probe packets, even ...cmaynard1-5/+6
2011-07-01Initialize the TCP windows to the maximum value instead of 0 to avoid false z...cmaynard1-0/+2
2011-06-29Indicate TCP fast retransmissions as an expert info note, rather than a warni...cmaynard1-1/+1
2011-06-19Show and and a filter to non-zero ACK numbers and URG pointers whenever their...sake1-5/+24
2011-05-04Cleanup: replace sizeof(arr)/sizeof(arr[0]) with shorter array_length(arr)darkjames1-1/+1
2011-04-25Store the frame_data structures in a tree, rather than a linked list. guy1-2/+11
2011-04-22Fix various warnings found by clang 3.0 (trunk 129935) complier:sfisher1-2/+1
2011-04-16From Edwin Groothuis via bug 5813:gerald1-4/+4
2011-04-13Don't assign to a proto_item * if the value won't be used: Coverity 1054-1056.wmeier1-5/+4
2011-04-13Allow TCP segment data to be filterable via "tcp.data".cmaynard1-10/+15
2011-03-31Register tcp by name.stig1-1/+2
2011-03-25Reword the comments from rev 36304.morriss1-102/+107
2011-03-25From Didier via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3055 :morriss1-2/+4
2011-03-25Fix the problem reported in https://bugs.wireshark.org/bugzilla/show_bug.cgi?...morriss1-0/+4
2011-03-25If a segment looks like a retransmission, don't mark it out-of-order.gerald1-2/+4
2011-03-24If we've already seen a segment which starts a multi-segment pdu (i.e., it'smorriss1-130/+152