summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-icmpv6.c
AgeCommit message (Expand)AuthorFilesLines
2012-10-11Change 'for (i=1; i<=n;...' to 'for (i=0; i<n; ...)Bill Meier1-1/+1
2012-10-11The usual idiom in C for "do this N times" is "for (i = 0; i < N; i++)",Guy Harris1-1/+1
2012-10-09Apply Ronnie Sahlberg's ICMP request/response tracking improvements from r453...Chris Maynard1-61/+113
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-09-19Since r41681, IPv6 sets pinfo->ip_ttl as the hop limit, so display that in theChris Maynard1-1/+2
2012-09-19Fix request/response tracking with checksum corner case.Chris Maynard1-2/+4
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
2012-09-07From Owen Kirby via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7704Alexis La Goutte1-14/+13
2012-09-01From Owen Kirby:Anders Broman1-3/+15
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-1/+1
2012-07-31Update to the last draft-ietf-6lowpan-nd-19 updatesAlexis La Goutte1-18/+32
2012-07-31Update ICMPv6 to last IANA Parameters (2012-07-18)Alexis La Goutte1-3/+10
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
2012-06-23Do not use same name for filters with incompatible typesPascal Quantin1-8/+12
2012-05-07Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-1/+1
2012-05-03From Klaus Heckelmann via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id...Chris Maynard1-3/+5
2012-04-13Update ICMPv6 to last IANA Parameters (2012-03-28) Alexis La Goutte1-19/+19
2012-03-06Use tvb_new_subset_remaining() rather than tvb_new_subset();Bill Meier1-31/+31
2012-02-01Fix some typos.Chris Maynard1-14/+14
2012-01-13Add comment about possible expert itemJörg Mayer1-0/+2
2012-01-12Don't do fcn calls in arg of g_?to??(); Macro may very well eval args multipl...Bill Meier1-2/+2
2011-12-26Update ICMPv6 to last IANA Parameters (2011-12-21)Alexis La Goutte1-15/+15
2011-12-20For a DNSSL lifetime of 0, add some useful text.Chris Maynard1-0/+3
2011-12-12From Roy Marples:Jaap Keuter1-1/+5
2011-12-03Fix bug with updating rr_offset before we're done fetching the matchedprefix ...Chris Maynard1-10/+17
2011-11-08packet_info's in_error_pkt is now a bitfield like in_gre_pkt.Chris Maynard1-4/+4
2011-11-08Improve ICMP conversation tracking, especially when capturing on multiple int...Chris Maynard1-0/+4
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
2011-10-20Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.Bill Meier1-4/+4
2011-10-19Specify ENC_TIME_TIMESPEC for a proto_tree_add_item() encoding arg for a fiel...Bill Meier1-1/+1
2011-10-16Do some conversions of proto_tree_add_item() 'encoding' arg.Bill Meier1-5/+5
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, FT_ST...Bill Meier1-1/+1
2011-10-10 Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-a...Bill Meier1-33/+33
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-au...Bill Meier1-1/+1
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly referen...Bill Meier1-92/+92
2011-09-21Fix vi "modeline" so it works;Bill Meier1-1/+1
2011-09-16Add dissection of router address(R) flag. Fixes https://bugs.wireshark.org/b...Chris Maynard1-7/+13
2011-07-30* Replace FALSE by ENC_BIG_ENDIAN for encoding parameterAlexis La Goutte1-601/+601
2011-07-27From Eric Zhu via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5846Alexis La Goutte1-2/+2
2011-06-15Make checkAPIs Happy Alexis La Goutte1-1/+1
2011-06-15From Colin O'Flynn via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5363Alexis La Goutte1-0/+52
2011-06-15From Colin O'Flynn via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5363Alexis La Goutte1-7/+8
2011-05-15Add EUI64 display type for Source/Target Link-layer Address (RFC4861)Alexis La Goutte1-6/+41
2011-05-15From Colin O'Flynn via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5921Alexis La Goutte1-0/+1
2011-05-08Add FT_EUI64 Field TypeAlexis La Goutte1-5/+3
2011-04-16Convert ICMPv6 dissector to "new-style" dissectorAlexis La Goutte1-48/+99
2011-04-14Update to last IANA parameters (2011-04-08)Alexis La Goutte1-51/+81
2011-04-11Neither checksum_item nor length are used uninitialized, but for some reason,Chris Maynard1-2/+2
2011-04-11Add conversation tracking and tshark tap support to ICMPv6. Fixes bug 5810.Chris Maynard1-45/+233
2011-03-03Use tvb_ether_to_str().Jeff Morriss1-8/+8