aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tpkt.c
AgeCommit message (Collapse)AuthorFilesLines
2011-03-25From Didier via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3055 :Jeff Morriss1-5/+7
Apply rev 25869 to most of the rest of the TCP-desegmenting dissectors. (The SSL dissector was already updated in one of two spots with bug 4535/rev 32456.) A couple of the patches had to be manually applied. From me: Fix the comments to match the change (including in the TCP and SSL dissectors.) svn path=/trunk/; revision=36332
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-3/+3
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-10-10Define some fcns & vars as static ...Bill Meier1-7/+13
svn path=/trunk/; revision=34458
2010-10-08Restore pinfo->private_data after an exception was thrown by a subdissector.Jeff Morriss1-12/+26
This is necessary in case a subdissector had changed it but was unable to restore it (due to the exception). Remove check_col(). svn path=/trunk/; revision=34436
2010-04-06#include <string.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32411
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2009-08-09Don't guard col_set_str (COL_INFO) with col_checkKovarththanan Rajaratnam1-4/+2
svn path=/trunk/; revision=29342
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-8/+4
svn path=/trunk/; revision=29340
2008-11-22From Peter (bug 2942):Stig Bjørlykke1-2/+2
Allow optimalization with -ftracer. svn path=/trunk/; revision=26822
2008-09-30Minor proto_reg_handoff cleanup: use find_dissector when appropriate.Bill Meier1-6/+6
svn path=/trunk/; revision=26308
2007-11-17Comment out dissect_ascii_tpkt to keep the buildbot happy.Graeme Lunt1-1/+2
svn path=/trunk/; revision=23480
2007-11-17The asciitpkt checkin broke the TPKT dissector comment out ↵Anders Broman1-3/+4
create_dissector_handle() and dissector_add() for now. svn path=/trunk/; revision=23478
2007-11-16From Harmeet Sawhney:Anders Broman1-2/+264
Parse MGCP over TCP with ASCII TPKT header http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1964 svn path=/trunk/; revision=23466
2007-10-29register tpkt for port 3389 and use x224 as the subdissector for this Ronnie Sahlberg1-1/+19
port svn path=/trunk/; revision=23306
2007-10-11Implement some of the minor possible speed improvment patches.Anders Broman1-2/+2
svn path=/trunk/; revision=23150
2006-08-27Register tpkt as a dissector so subdissectors can register tpkt on ports ↵Graeme Lunt1-0/+1
other than 102. svn path=/trunk/; revision=19049
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-09-27- Make the reassemble TCP preference default TRUE.Anders Broman1-2/+2
- in dissect_tpkt_encap() only check the desegment flag passed in the function. svn path=/trunk/; revision=16016
2005-07-12add some more textual explanations of the protocol and it's fieldsUlf Lamping1-4/+8
svn path=/trunk/; revision=14909
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-08-21Prevent the word "desegmentation" at the GUI, but use reassembling at that ↵Ulf Lamping1-2/+3
places, as we also use "defragmentation" and "reassembling". Use reassembling as the general term for such actions. I (hopefully) didn't changed any protocol fields or preference file names, but only the GUI labels appearing in the protocol display and the protocol preferences. Also added a note to the protocol preferences (where appropriate), that you have to enable "Allow subdissectors to reassemble TCP streams" at the corresponding protocol settings for TCP reassembling to take effect. If you encounter any mistakes I've made here, please let me know... svn path=/trunk/; revision=11784
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+395
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410