summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-05-12If we have pcap_open, call it instead of pcap_open_live, otherwise we mightGerald Combs2-26/+38
crash. The changes to trigcap.c haven't been tested, but _should_ work. svn path=/trunk/; revision=25279
2008-05-12Update to WpdPack 4.0.2 and NASM 2.02Tomas Kukosa3-6/+6
svn path=/trunk/; revision=25278
2008-05-12HS-DSCH type 2 bug fix + prettification.Martin Mathieson1-16/+65
svn path=/trunk/; revision=25277
2008-05-11g_string_sprintf --> g_string_printf and g_string_sprintfa --> ↵Bill Meier14-37/+37
g_string_append_printf svn path=/trunk/; revision=25276
2008-05-11Sort list before thaw to avoid flicker when doing capture.Stig Bjørlykke3-15/+32
Save pane size in recent. svn path=/trunk/; revision=25275
2008-05-11Fix some of the Errors/warnings detected by checkapiBill Meier3-12/+12
svn path=/trunk/; revision=25274
2008-05-11Convert C++ style comments ...Bill Meier1-3/+5
svn path=/trunk/; revision=25273
2008-05-11Add define for new channel type.Martin Mathieson1-18/+19
svn path=/trunk/; revision=25272
2008-05-11Added HS-DSCH data frame type 2 (currently only compile-tested).Martin Mathieson1-6/+250
svn path=/trunk/; revision=25271
2008-05-10From Hans-Peter Bock:Jaap Keuter25-0/+2751
Attached to this post you find a patch for integration into wireshark that adds a dissector for SERCOS III, ethertype 0x88cd. svn path=/trunk/; revision=25270
2008-05-10From Steve Karg:Jaap Keuter1-24/+26
Corrected decode of a BACnet ReadRange request with no range specified (i.e. all) which showed ‘malformed packet’ in the decoder. svn path=/trunk/; revision=25269
2008-05-09Redo the loops a bit; that fixes an uninitialized variable, and movesGuy Harris1-5/+14
the increments a bit closer to the point of use. (XXX - is there more than one place where we turn a sequence of hex digits into a string? If so, we should make it a common utility.) svn path=/trunk/; revision=25268
2008-05-09Add a couple of missing HS-DSCH data frame fields.Martin Mathieson1-2/+39
svn path=/trunk/; revision=25267
2008-05-09Null-terminate the hex-to-text-converted string.Guy Harris1-0/+2
svn path=/trunk/; revision=25266
2008-05-09sprintf() and strtoul() are massive overkill for turning a string of hexGuy Harris1-21/+84
digits into a string of characters; use g_ascii_xdigit_value() to convert individual hex digit characters to their hex value - and check whether it succeeds or not, so we catch invalid hex digits! - and just append the resulting byte value to the string. Handle the case where compute_ascii_key() fails. svn path=/trunk/; revision=25265
2008-05-09Fix some of the Errors/warnings detected by checkapi.Anders Broman10-51/+100
svn path=/trunk/; revision=25264
2008-05-09Fix a typo: strl -> strlenStig Bjørlykke1-1/+1
svn path=/trunk/; revision=25263
2008-05-09Include string.hStig Bjørlykke1-0/+1
svn path=/trunk/; revision=25262
2008-05-09Fix some of the Errors/warnings detected by checkapi.Anders Broman4-8/+8
svn path=/trunk/; revision=25261
2008-05-09Use PROTO_ITEM_SET_HIDDEN().Anders Broman11-38/+73
Fix ID marking Add checkapi to makefiles svn path=/trunk/; revision=25260
2008-05-08Run checkAPI in plugins dir.Anders Broman11-101/+123
svn path=/trunk/; revision=25259
2008-05-08Stop using deprecated functions identified by checkAPIs script.Martin Mathieson6-59/+69
svn path=/trunk/; revision=25258
2008-05-08From Anders: Checkapi enabled for wiretap and more functions converted.Martin Mathieson4-9/+10
svn path=/trunk/; revision=25257
2008-05-08Use g_strlcpy() rather than strcpy(), strncpy().Martin Mathieson1-14/+15
svn path=/trunk/; revision=25256
2008-05-08Use PROTO_ITEM_SET_HIDDEN().Anders Broman1-6/+10
svn path=/trunk/; revision=25255
2008-05-08strncpy -> g_strlcpyAnders Broman6-14/+11
svn path=/trunk/; revision=25254
2008-05-07Fix a few typos ....Bill Meier1-14/+14
svn path=/trunk/; revision=25253
2008-05-07Enable PCAP_REMOTE by defaultTomas Kukosa1-1/+1
svn path=/trunk/; revision=25252
2008-05-07Select correct bytes range for Algorithms tree.Martin Mathieson1-1/+7
svn path=/trunk/; revision=25251
2008-05-07Comment out condition which is always true (based on theMichael Tüxen1-0/+2
choosen data types). svn path=/trunk/; revision=25250
2008-05-07From Peter Kjellerstedt:Jaap Keuter1-1/+1
For some reason only the first eight interleaved RTSP channels are supported by epan/dissectors/packet-rtsp.c. This is a problem for us as one of our servers use the channel numbers in a round robin fashion and will thus use all 256 channels. svn path=/trunk/; revision=25249
2008-05-07Fix some of the Errors/warnings detected by checkapi.Anders Broman10-67/+74
svn path=/trunk/; revision=25248
2008-05-06Removed an unused break.Stig Bjørlykke1-1/+0
svn path=/trunk/; revision=25247
2008-05-06From Peter Kjellerstedt (bug 2521):Stig Bjørlykke1-0/+1
Add MARKER_COM to vals_marker[]. svn path=/trunk/; revision=25246
2008-05-06Add checkapi target.Anders Broman1-0/+3
svn path=/trunk/; revision=25245
2008-05-06Fix some of the Errors/warnings detected by checkapi.Anders Broman16-68/+74
svn path=/trunk/; revision=25244
2008-05-05Require GLib 2.4 or later.Guy Harris4-157/+3
That means that G_GINT64_MODIFIER will be defined, so don't check whether it's defined. We don't use the PRI[douxX]64 macros, as we use the GLib print routines and thus use G_GINT64_MODIFIER instead. Get rid of the checks for whether inttypes.h defines PRI[douxX]64; just check whether it exists at all. That means we don't set INTTYPES_H_DEFINES_FORMATS, so don't check for it. svn path=/trunk/; revision=25243
2008-05-05Boost the automake version required to 1.9.Guy Harris1-2/+2
(Currently, configure.in also specifies the minimum autoconf and automake versions, but the check for the automake version doesn't produce an immediate failure - instead, you might get a flood of configure.in:16: option `tar-ustar' not recognized errors *after* configure.in:16: require version 1.9, but have 1.x.x and the diagnostic isn't as clear.) svn path=/trunk/; revision=25242
2008-05-05Require automake 1.9 or later; earlier versions don't support theGuy Harris1-1/+1
"tar-ustar" option. svn path=/trunk/; revision=25241
2008-05-05Fix some of the Errors/warnings detected by checkapi,Anders Broman9-122226/+123723
make non ASCII char a warning for now. svn path=/trunk/; revision=25240
2008-05-05Change depreciated function g_tree_traverse -> g_tree_foreachAnders Broman2-2/+2
svn path=/trunk/; revision=25239
2008-05-05Remove depreciated functions g_string_sprint, g_string_sprintfa.Anders Broman5-20/+20
svn path=/trunk/; revision=25238
2008-05-05Handle SSID as binary in WLAN Traffic Statistics.Stig Bjørlykke3-37/+29
svn path=/trunk/; revision=25237
2008-05-05Add Id tag.Anders Broman1-1/+3
svn path=/trunk/; revision=25236
2008-05-05Don't use proto_tree_add_item_hidden().Anders Broman2-21/+42
svn path=/trunk/; revision=25235
2008-05-05Remove gtk/isprint.h as it's not in use.Stig Bjørlykke3-45/+0
svn path=/trunk/; revision=25234
2008-05-05Dount use proto_tree_add_item_hidden().Anders Broman4-10/+19
svn path=/trunk/; revision=25233
2008-05-05Have autoconf generate "ustar" tar files by default. This should let us haveGerald Combs2-8/+7
paths longer than 99 characters. svn path=/trunk/; revision=25232
2008-05-05Make it possible to run checkapi on all plugins trough makefile.nmakeAnders Broman30-0/+91
Note: Commented out in the plugins giving errors for now. svn path=/trunk/; revision=25231
2008-05-05Add depreceated glib API:sAnders Broman1-0/+10
svn path=/trunk/; revision=25230