aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2008-12-23Add GeoIP to the Windows build. Fix a remaining geoip_ -> geoip_db_Gerald Combs11-16/+47
conversion. svn path=/trunk/; revision=27098
2008-12-23GeoIP expects IPv4 addresses in host byte order.Gerald Combs2-12/+13
svn path=/trunk/; revision=27097
2008-12-23Allow compilation with c-ares <= 1.4.0 (untested). While we're at it, fixGerald Combs1-4/+11
c-ares name resolution. svn path=/trunk/; revision=27096
2008-12-23From Gursel Mutlu:Jaap Keuter1-2/+6
WPS defines usage of UUID values for both enrollee and registrar. They are both 16-byte values as defined in RFC 4122 for UUID. Current code on SVN repository dissectors these values as they are 8 bytes long. svn path=/trunk/; revision=27095
2008-12-23Do not include init.lua in distribution tar.gz.Balint Reczey1-1/+3
svn path=/trunk/; revision=27094
2008-12-23From Didier Gautheron:Jaap Keuter1-2/+8
In follow.c there's stuff like: DISSECTOR_ASSERT(... fwrite( data, 1, sc->dlen, data_out_file ) If DISSECTOR_ASSERT is defined as a noop then fwrite is not called. svn path=/trunk/; revision=27093
2008-12-23Fix bug #3152 for good.Stephen Fisher1-5/+8
svn path=/trunk/; revision=27092
2008-12-23Don't use fancy quote characters that don't fit in ASCII; just useGuy Harris2-13/+13
Boring Old ASCII Quotes. That way, you don't have to worry about which character set a program reading the file is expecting. Fixes bug 3157. Fix some typoes in comments while we're at it. svn path=/trunk/; revision=27091
2008-12-22err_posn_table[] was mis-generated (probably a cut-and-pasteo, as,Guy Harris1-4/+100
given that we're using #defines for NO_ERROR_DETECTED and UNCORRECTIBLE_ERROR, the table is 2x128, rather than 8x32 like the other tables, so I probably had a loop that advanced by 8 elements but printed only 2 of them). svn path=/trunk/; revision=27090
2008-12-22Update URLs for Cell Relay Retreat CRC information.Guy Harris1-3/+3
svn path=/trunk/; revision=27089
2008-12-22Fix bug 3152: when searching for igemacintegration manually set GTK_LIBS toJeff Morriss1-1/+14
the found library (AC_SEARCH_LIBS sets the LIBS variable but we really don't want that). svn path=/trunk/; revision=27088
2008-12-22Initialize a variable to keep lint happy. reported by Chris Maynard in bug #2814Bill Meier1-1/+1
svn path=/trunk/; revision=27087
2008-12-22Add some missing g_free() [for certain error code paths].Bill Meier2-0/+3
svn path=/trunk/; revision=27086
2008-12-22Fix some typos and spelling (mostly in text strings)Bill Meier20-54/+54
svn path=/trunk/; revision=27085
2008-12-22Fix a typoBill Meier1-1/+1
svn path=/trunk/; revision=27084
2008-12-22Best guess fix for missing initializer in array of string pointers; Bill Meier1-0/+4
Issue reported by Chris Maynard in Bug #2813. svn path=/trunk/; revision=27083
2008-12-22Fixes for issues reported by Chris Maynard in bug #2813;Bill Meier3-7/+11
Also: fix a typo svn path=/trunk/; revision=27082
2008-12-22From Pascal Quantin:Anders Broman6-8/+8
3GPP dissectors: do not go back to tree root when decoding an encapsulated message https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3132 svn path=/trunk/; revision=27081
2008-12-22Bugfix: "make rpm-package" would fail if help/faq.txt didn't exist already.Jörg Mayer1-1/+1
The reason was that FAQ incorrectly depended on help/faq.txt. Correct dependency is, that both files depend only on the generator. svn path=/trunk/; revision=27080
2008-12-22From Michael Lum:Anders Broman1-3/+14
Minor enhancement for for MEID/pESN https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3100 svn path=/trunk/; revision=27079
2008-12-22Add frame type index filter for AMR if sent using bandwidth efficient mode.Anders Broman1-54/+83
Fix bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3148 svn path=/trunk/; revision=27078
2008-12-22wtap_pcap_encap_to_wtap_encap() and wtap_wtap_encap_to_pcap_encap() wereGuy Harris1-4/+0
moved back into libwiretap. svn path=/trunk/; revision=27077
2008-12-22Move wtap_pcap_encap_to_wtap_encap() and wtap_wtap_encap_to_pcap_encap()Guy Harris5-646/+587
back to libwiretap for now, as it's inherently tied to reading libpcap files; at some point we might want to have pcap-reading (and pcap-ng-reading?) code in a separate library, for use by, for example, dumpcap (and rawshark?). svn path=/trunk/; revision=27076
2008-12-21Fix error reporting - just use fprintf(stderr, ...), give the path nameGuy Harris1-36/+33
of the pipe to be opened in the messages. Check whether strtol() succeeds. Map DLT_ values to a WTAP_ENCAP_ value regardless of whether it comes from linktype_name_to_val() or strtol(). Clean up indentation. svn path=/trunk/; revision=27075
2008-12-21If we don't have any of the pcap_datalink_XXX_to_YYY routines,Guy Harris6-47/+98
substitute our own (I wrote them all, so I can steal them from the BSD-licensed libpcap if I want :-)). This means that linktype_name_to_val() and linktype_val_to_name() are always available, and we don't need to #ifdef use of them. Use pcap_datalink_val_to_description() to get the description for a particular DLT_ value, rather than mapping the DLT_ value to a WTAP_ENCAP_ value and getting the description for the latter. svn path=/trunk/; revision=27074
2008-12-21When destroying the RTP player make sure to terminate the use of PortAudio ↵Jaap Keuter1-0/+12
library. At least that is what the documentation says. svn path=/trunk/; revision=27073
2008-12-21[Automatic manuf update for 2008-12-21]Gerald Combs1-18/+48
svn path=/trunk/; revision=27071
2008-12-20Fix some typos and spellingBill Meier6-6/+6
svn path=/trunk/; revision=27070
2008-12-20geoip_get_paths -> geoip_db_get_paths.Gerald Combs1-1/+1
svn path=/trunk/; revision=27069
2008-12-20Fix some typos and spelling (mostly in text strings)Bill Meier5-8/+8
svn path=/trunk/; revision=27068
2008-12-20Add a newline to the end of the file.Guy Harris1-1/+1
svn path=/trunk/; revision=27067
2008-12-20Umm, no. g_strdup() != g_strdup_printf(); the first argument to theGuy Harris1-1/+1
*former* should always be a format string, but the *only* argument to the latter is a string to duplicate. svn path=/trunk/; revision=27066
2008-12-20Fix various typos and spelling errors (mostly in text strings)Bill Meier50-211/+211
svn path=/trunk/; revision=27065
2008-12-20From babi: Fix three overflows (bugs 3150 and 3151).Gerald Combs3-12/+13
From me: Use a #define for the RTP analysis field name lengths. svn path=/trunk/; revision=27064
2008-12-19Rename geoip.[ch] to geoip_db.[ch] so we don't collide with GeoIP.h. RenameGerald Combs8-67/+241
some functions to match. Add GeoIP lookups to the IP dissector. Add a preference for GeoIP lookups, which is disabled by default. svn path=/trunk/; revision=27063
2008-12-19Back out r27047 and r27053.Gerald Combs33-86/+121
svn path=/trunk/; revision=27062
2008-12-19One last snprintf.Jaap Keuter1-4/+0
svn path=/trunk/; revision=27061
2008-12-19Correct language.Jaap Keuter1-13/+13
svn path=/trunk/; revision=27060
2008-12-19Cleanup sourcecode.Jaap Keuter1-82/+75
svn path=/trunk/; revision=27059
2008-12-19Revert queueing --> queuing spelling changes made in SVN #27050Bill Meier2-5/+5
svn path=/trunk/; revision=27058
2008-12-19Revert the queueing --> queuing spelling changeBill Meier2-4/+4
svn path=/trunk/; revision=27057
2008-12-19After checking for ige_mac_menu_set_menu_bar reset CFLAGS and LIBSJeff Morriss1-0/+2
back to what they were before the test (without GTK_LIBS). This prevents tshark (and every other program) from unnecessarily linking against GTK_LIBS. svn path=/trunk/; revision=27056
2008-12-18Describe the "-d" option a little more clearly.Gerald Combs1-3/+12
svn path=/trunk/; revision=27055
2008-12-18Define the path to the tools directory.Gerald Combs1-0/+1
svn path=/trunk/; revision=27054
2008-12-18Update calls to proto_tree_add_bytes_format to reflect r27047.Gerald Combs31-118/+71
svn path=/trunk/; revision=27053
2008-12-18Fix two typosBill Meier1-2/+2
svn path=/trunk/; revision=27052
2008-12-18Only declare failure_message() if we HAVE_PLUGINS (since it's only used when ↵Jeff Morriss2-0/+4
that's the case). svn path=/trunk/; revision=27051
2008-12-18Fix various typos and spelling errors (mostly in text strings)Bill Meier78-239/+240
svn path=/trunk/; revision=27050
2008-12-18Have descriptors start out with a length of "to the end of the packet",Guy Harris1-7/+12
so that if they're cut short, they appear to be the length of the remaining data in the packet, rather than zero-length. svn path=/trunk/; revision=27049
2008-12-18From Richard Brodie:Jaap Keuter1-47/+152
DNSSEC RFC 5155 support patch svn path=/trunk/; revision=27048