summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-drda.c
AgeCommit message (Collapse)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-11-09Add data parameter to tcp_dissect_pdus() as well as convert it to using ↵Michael Mann1-8/+11
"new" style dissectors. Now that "bytes consumed" can be determined, should tcp_dissect_pdus() take advantage of that? Should tcp_dissect_pdus return length (bytes consumed)? There are many dissectors that just call tcp_dissect_pdus() then return tvb_length(tvb). Seems like that could all be rolled into one. svn path=/trunk/; revision=53198
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-1/+1
svn path=/trunk/; revision=51852
2013-05-25Batch of filterable expert_infos.Michael Mann1-1/+10
svn path=/trunk/; revision=49581
2013-03-16[-Wmissing-prototypes]Anders Broman1-0/+3
Use explicit casts. svn path=/trunk/; revision=48341
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-09-03Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7666 :Pascal Quantin1-0/+5
Check that DRDA command has a minimum length of 10 bytes to prevent a potential infinite loop svn path=/trunk/; revision=44749
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-04-26Minor: reformatting, unneeded #includes, whitespace cleanup;Bill Meier1-777/+813
Also: use val_to_str_const(0 instead of val_to_str() in a few cases. svn path=/trunk/; revision=42271
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