aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2005-04-18statusbar changes:Ulf Lamping4-32/+49
-show the current capture file size, if capturing in real time mode. -move the packet "Drops" count (if available) from file to packets statusbar part svn path=/trunk/; revision=14130
2005-04-18From Peter Johansson: Make sure a pointer isn't NULL before we try to use it.Gerald Combs1-1/+1
svn path=/trunk/; revision=14129
2005-04-18Detect an infinite loop in dissect_rsvp_ero_rro_subobjects(). Fixes bug 71.Gerald Combs1-0/+2
svn path=/trunk/; revision=14128
2005-04-18Force the "fmt" argument of val_to_str() to be non-null. Change the 9PGerald Combs2-676/+678
dissector to use a non-null format. Fixes bug 70. Fix the line endings in the 9P dissector, and set its SVN properties. svn path=/trunk/; revision=14127
2005-04-18Add fuzz-test.sh to the distribution.Gerald Combs1-0/+1
svn path=/trunk/; revision=14126
2005-04-18 some updates from T AndersRonnie Sahlberg3-7/+9
svn path=/trunk/; revision=14125
2005-04-18From T AndersRonnie Sahlberg1-2/+3
packetcable updates svn path=/trunk/; revision=14124
2005-04-18fix small typo Plan 9 not Plan9Ronnie Sahlberg1-2/+2
svn path=/trunk/; revision=14123
2005-04-18From <noselasd@asgaard.homelinux.org>Ronnie Sahlberg3-0/+682
Support for 9P used by plan 9 from outer space svn path=/trunk/; revision=14122
2005-04-18Make sure a pointer isn't null before we dereference it.Gerald Combs1-1/+1
svn path=/trunk/; revision=14121
2005-04-18More gratuitous tvb_ensure_bytes_exist()ing. One of them fixes bug 67.Gerald Combs1-0/+32
svn path=/trunk/; revision=14120
2005-04-18Keep MGCP from looping in an infinite fashion. Other parts of the code lookGerald Combs1-1/+4
like they might be prone to doing the same. svn path=/trunk/; revision=14119
2005-04-17bugfix: show the right filesize after a live capture finishedUlf Lamping2-1/+18
svn path=/trunk/; revision=14118
2005-04-17Change a bunch of instances where we manually fetch a string and callGerald Combs1-24/+10
proto_tree_add_string() to just use proto_tree_add_item(). Add a note about a memory leak. Fixes bug 65. svn path=/trunk/; revision=14117
2005-04-17add "Decode As" and "Checkbox" (Enabled Protocols) IconsUlf Lamping6-9/+92
svn path=/trunk/; revision=14116
2005-04-17Make sure frag_size doesn't underflow, which would make us to try toGerald Combs1-0/+7
allocate a huge amount of memory. Fixed bug 63. svn path=/trunk/; revision=14115
2005-04-17Add a description and usage message. Handle invalid capture files.Gerald Combs1-1/+36
svn path=/trunk/; revision=14114
2005-04-17Add some length checking.Gerald Combs1-2/+8
svn path=/trunk/; revision=14113
2005-04-17Add a tvb_ensure_bytes_exist(). Fixes bug 62.Gerald Combs1-0/+1
svn path=/trunk/; revision=14112
2005-04-17Add even more calls to tvb_ensure_bytes_exist().Gerald Combs1-0/+85
svn path=/trunk/; revision=14111
2005-04-17Ham-fistedly drop in a bunch of tvb_ensure_bytes_exist() calls. One ofGerald Combs1-0/+32
them fixes bug 46. svn path=/trunk/; revision=14110
2005-04-16Add a few tvb_ensure_bytes_exist() calls. Fixes bug 35.Gerald Combs1-0/+4
svn path=/trunk/; revision=14109
2005-04-16temporarily fix a GTK1.x related bugUlf Lamping1-0/+3
svn path=/trunk/; revision=14108
2005-04-16Add an extra_info_type field to smb_extra_info_t so that we can makeGerald Combs6-24/+48
sure we're not referencing a fid when we think we're referencing an smb_nt_transact_info_t pointer. (A fuzzed capture I have triggers this behavior). svn path=/trunk/; revision=14107
2005-04-16disable some toolbar icons, if no capture packets loadedUlf Lamping1-1/+4
svn path=/trunk/; revision=14106
2005-04-16rename capture_clear() to capture_restart()Ulf Lamping7-10/+23
statusbar update should work now even in capture error case svn path=/trunk/; revision=14105
2005-04-16bugfix: don't crash on error in normal mode captureUlf Lamping1-3/+10
svn path=/trunk/; revision=14104
2005-04-16fix cf_cb_... callback handling (but it's still not perfect)Ulf Lamping1-28/+26
svn path=/trunk/; revision=14103
2005-04-16minor refactoringUlf Lamping1-2/+3
svn path=/trunk/; revision=14102
2005-04-16beautify an error messageUlf Lamping1-7/+11
svn path=/trunk/; revision=14101
2005-04-16prepare for "Don't show this message again" checkboxes in the simple_dialogUlf Lamping2-2/+43
svn path=/trunk/; revision=14100
2005-04-16we are in beta, not alpha state any more :-)Ulf Lamping1-1/+1
svn path=/trunk/; revision=14099
2005-04-16add 12 new toolbar/menu iconsUlf Lamping36-55/+1987
add two toolbar toggle buttons add icons to various menu items create new Statistics telephony group and put telephony and alike protocols in it svn path=/trunk/; revision=14098
2005-04-15In time_secs_to_str_buf(), handle the case where a large time value makes Gerald Combs1-1/+7
things go wonky. svn path=/trunk/; revision=14097
2005-04-15In fragment_unhash(), free our key data _after_ we remove the key fromGerald Combs1-5/+5
the hash table so that fragment_equal() doesn't end up working with recently-freed data. svn path=/trunk/; revision=14096
2005-04-15Add a missing backslash.Gerald Combs1-1/+1
svn path=/trunk/; revision=14095
2005-04-15Add a tvb_ensure_bytes_exist(). I'm not sure if this is the correct wayGerald Combs1-0/+1
to do this, but it fixes bug 38. svn path=/trunk/; revision=14094
2005-04-15Update to reflect recent toolbar changes.Gerald Combs1-10/+14
svn path=/trunk/; revision=14093
2005-04-15In dissect_ber_bitstring32(), make sure tmp_tvb is properly initialized.Gerald Combs1-2/+2
Fixes bug 32. svn path=/trunk/; revision=14092
2005-04-15From Olivier Jacques:Anders Broman2-65/+137
- Add bearerServiceCodes decoding - Fixed sendRoutingInfoForSM and reportSM-DeliveryStatus invoke decoding (argument mismatch) svn path=/trunk/; revision=14091
2005-04-15From Olivier Jacques:Anders Broman3-9/+74
- Add bearerServiceCodes decoding - Fixed sendRoutingInfoForSM and reportSM-DeliveryStatus invoke decoding (argument mismatch) svn path=/trunk/; revision=14090
2005-04-15Add Javier Acuna to the list.Anders Broman1-1/+1
svn path=/trunk/; revision=14089
2005-04-15From Olivier Jacques:Anders Broman2-2797/+3004
- Adds callingPartyNumber and CalledPartyNumber parameter dissection uing ISUP dissector - Adds IMSI and ISDN-AddressString parameter dissection - A lot of changes in the .asn file to sort it, handle more parameters and error codes - contributed by Javier Acuna [javier.acuna@sixbell.cl] svn path=/trunk/; revision=14088
2005-04-15From Olivier Jacques:Anders Broman3-743/+904
- Adds callingPartyNumber and CalledPartyNumber parameter dissection uing ISUP dissector - Adds IMSI and ISDN-AddressString parameter dissection - A lot of changes in the .asn file to sort it, handle more parameters and error codes - contributed by Javier Acuna [javier.acuna@sixbell.cl] svn path=/trunk/; revision=14087
2005-04-15From Jacques Olivier :Anders Broman2-4/+7
Export callingPartyNumber and CalledPartyNumber parameter dissection . svn path=/trunk/; revision=14086
2005-04-15Setr up conversations for RTP and RTCP.Anders Broman1-0/+40
svn path=/trunk/; revision=14085
2005-04-15Add message type string to "message type", print Protocol ID short name in ↵Anders Broman1-4/+26
Info coulmn. svn path=/trunk/; revision=14084
2005-04-15add some new capture and filter related handcrafted (toolbar) iconsUlf Lamping15-509/+2042
add "new" capture options feature, which will act like old capture start, and change capture start option (for immediately capture) rename Capture/Clear to Capture/Restart svn path=/trunk/; revision=14083
2005-04-14fix bugzilla #16: make columns resizeable again after doing "Resize Columns"Ulf Lamping1-1/+5
svn path=/trunk/; revision=14082
2005-04-14Strip off anything after a blank in the PacketLibraryVersion string, asGuy Harris1-12/+32
the string says "3.0 alpha3" in the final release of WinPcap 3.0, and saying that's "3.0 alpha3" is misleading. Don't repeatedly fetch the version string from PacketLibraryVersion; just cache the version we got the first time. svn path=/trunk/; revision=14081