aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-drda.c
AgeCommit message (Collapse)AuthorFilesLines
2012-01-16The frame number is an unsigned integer, so there's no guarantee that itGuy Harris1-3/+3
won't equal (guint32)-1. Fortunately, frame numbers are 1-based, so there *is* a guarantee that it won't equal 0. svn path=/trunk/; revision=40545
2011-09-26Get rid of check_col() and use ENC.Anders Broman1-14/+9
svn path=/trunk/; revision=39151
2011-07-05Add some additional routine variants that handle string encodings, andGuy Harris1-16/+22
make FT_STRING and FT_UINT_STRING handle string encodings. Get rid of FT_EBCDIC in favor of FT_STRING with ENC_EBCDIC. Add some URLs for DRDA. Clean up some stuff in TN3270 and TN5250, including using ENC_ values for proto_tree_add_item(). svn path=/trunk/; revision=37909
2010-10-30Use value_string_ext fcns to access two value_string arrays;Bill Meier1-31/+36
Remove two duplicate entries from each of two value_string arrays; Initialize a global variable each time a file is (reloaded); Remove two unneeded lines of code; Minor code re-arrangement & reformatting. svn path=/trunk/; revision=34728
2010-08-27From Matthieu Lochegnies via bug 5153:Stig Bjørlykke1-2/+13
Show multiples DRDA commands from the same frame. svn path=/trunk/; revision=33952
2010-05-13As suggested in ↵Jeff Morriss1-201/+196
http://www.wireshark.org/lists/wireshark-dev/200809/msg00075.html (as referenced in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2907 ) and https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3411 : Write a new convenience routine for finding a conversation and, if it is not found, create it. The frame number and addresses are taken from pinfo (as is the common case). Use this function in a bunch of dissectors. svn path=/trunk/; revision=32790
2010-04-06#include <string.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32410
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=29340
2009-07-07Changed flags_set_truth -> tfs_set_notsetStig Bjørlykke1-4/+4
svn path=/trunk/; revision=28989
2008-12-17Fix typos and spelling (mostly in text strings) Bill Meier1-1/+1
svn path=/trunk/; revision=27028
2008-08-26#include <emem.h> not req'dBill Meier1-1/+0
svn path=/trunk/; revision=26091
2008-08-01From metatech:Anders Broman1-2/+2
- In DRDA the data is of different "nature" : EBCDIC vs ASCII, so I think they deserve different field names. svn path=/trunk/; revision=25902
2008-02-08Added missing "svn:keywords Id" and "svn:eol-style native" for someStig Bjørlykke1-1/+1
c and h files. svn path=/trunk/; revision=24290
2007-11-19Introduce use of the new FT_EBCDIC field type as a second display ofStephen Fisher1-4/+14
text fields (data & sqlstatement). Also fix the options on the FT_STRINGZ items - change them to FT_STRING and change BASE_DEC to BASE_NONE. svn path=/trunk/; revision=23505
2007-10-23Apply the small performance enhancment patches for:Anders Broman1-1/+1
- if offset is 0, tvb_length is the same as tvb_length_remaining, just faster. Replace - col_append_fstr() with faster col_append_str() - col_add_str() with col_set_str() when it's safe svn path=/trunk/; revision=23252
2007-05-27From Metatech:Stephen Fisher1-1/+13
Here is a small patch of a dozen lines that extracts SQL statements from the packet. This allows to use the field "drda.sqlstatement" in coloring rules or in a packet filter so that only SQL statements are dumped from a connection svn path=/trunk/; revision=21964
2007-04-03From metatech :Sebastien Tandel1-0/+879
Dissector for the DRDA protocol. This is the protocol used by among others the DB2 database. modify his entry in AUTHORS svn path=/trunk/; revision=21331