aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column_info.h
AgeCommit message (Collapse)AuthorFilesLines
2011-07-04From Michael Mann:Anders Broman1-2/+4
Added ability to display UTC time or UTC time with date. I liked having the difference between UTC and local time, not just setting local=UTC. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2629 svn path=/trunk/; revision=37898
2010-12-30Corrected comment for col_custom_occurrence.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=35311
2010-09-22When using a custom column, make it possible to select which occurrence to ↵Sake Blok1-1/+2
show if the field has multiple occurrences. svn path=/trunk/; revision=34186
2010-08-29Doxygen changes.Anders Broman1-78/+84
svn path=/trunk/; revision=33990
2009-11-27Fixed some indenting.Stig Bjørlykke1-15/+15
svn path=/trunk/; revision=31100
2009-09-08Custom columnfication:Kovarththanan Rajaratnam1-1/+1
* Deprecate COL_DCE_CTX ("Context ID). Use dcerpc.cn_ctx_id svn path=/trunk/; revision=29797
2009-09-08Custom column deprecation:Kovarththanan Rajaratnam1-1/+1
We fill out the COL_DSTIDX column by using 'pinfo->dst_idx'. This member is only set by the MDS Header dissector based on 'mdshdr.dstidx'. So remove COL_DSTIDX and migrate to 'mdshdr.dstidx' custom column. svn path=/trunk/; revision=29795
2009-09-08Custom column deprecation:Kovarththanan Rajaratnam1-1/+1
We fill out the COL_SRCIDX column by using 'pinfo->src_idx'. This member is only set by the MDS Header dissector based on 'mdshdr.srcidx'. So remove COL_SRCIDX and migrate to 'mdshdr.srcidx' custom column. svn path=/trunk/; revision=29794
2009-09-08Custom column deprecation:Kovarththanan Rajaratnam1-1/+1
We fill out the COL_RXID column by using 'pinfo->rxid'. This member is only set by the Fibre Channel dissector based on 'fc.rx_id'. So remove COL_RXID and migrate to 'fc.rx_id' custom column. svn path=/trunk/; revision=29793
2009-09-08Custom column deprecation:Kovarththanan Rajaratnam1-1/+1
We fill out the COL_OXID column by using 'pinfo->oxid'. This member is only set by the Fibre Channel dissector based on 'fc.ox_id'. So remove COL_OXID and migrate to 'fc.ox_id' custom column. svn path=/trunk/; revision=29792
2009-09-08From : Didier GautheronAnders Broman1-0/+1
speed up a little proto_custom_set. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3972 svn path=/trunk/; revision=29789
2009-08-25 Custom columnfication:Anders Broman1-1/+1
* Deprecate COL_BSSGP_TLLI (GPRS BSSGP IE TLLI). Use bssgp.tlli svn path=/trunk/; revision=29546
2009-08-23Custom columnfication:Kovarththanan Rajaratnam1-1/+1
* Deprecate COL_REL_CONV_TIME (Relative time (conversation)). Use tcp.time_relative svn path=/trunk/; revision=29523
2009-08-23Custom columnfication:Kovarththanan Rajaratnam1-1/+1
* Deprecate COL_FR_DLCI (Frame Relay DLCI). Use fr.dlci svn path=/trunk/; revision=29522
2009-08-23Custom columfication:Kovarththanan Rajaratnam1-1/+1
* Deprecate COL_HPUX_DEVID (HP-UX Device ID). Use nettl.devid svn path=/trunk/; revision=29517
2009-08-23Custom columfication:Kovarththanan Rajaratnam1-1/+1
* Deprecate COL_HPUX_SUBSYS (HP-UX Nettl Subsystem). Use nettl.subsys svn path=/trunk/; revision=29516
2009-08-23Custom columfication:Kovarththanan Rajaratnam1-1/+1
* Deprecate COL_COS_VALUE (L2 COS Value (802.1p)). Use vlan.priority svn path=/trunk/; revision=29513
2009-08-19From Didier Gautheron:Anders Broman1-1/+1
Extracted from optimizations patch http://wiki.wireshark.org/Development/Optimization Make col_expr const gchar. svn path=/trunk/; revision=29471
2009-07-23From Kovarththanan Rajaratnam: avoid circular dependency.Martin Mathieson1-17/+14
svn path=/trunk/; revision=29179
2009-07-23Try to get the #includes right - take 2.Anders Broman1-0/+3
svn path=/trunk/; revision=29176
2009-07-23Try to get the #includes right.Anders Broman1-3/+0
svn path=/trunk/; revision=29175
2009-07-23From Kovarththanan Rajaratnam:Anders Broman1-0/+4
Precompile custom columns filters. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3767 svn path=/trunk/; revision=29174
2009-07-10Fix a typo.Anders Broman1-1/+1
svn path=/trunk/; revision=29055
2008-03-01Custom column updates:Stephen Fisher1-2/+6
- Change apply / prepare / ... as filter to use the field's value, which is now stored in fdata as well as cinfo. Now we don't have to reprocess the entire packet list when using these features. This also prevents the use of these features from overwriting custom column information. (custom columns can now be used in apply / prepare ... as filter) - Break col_expr and col_expr_val out into a struct that is included not only in cinfo, but now also fdata. - Have col_custom_set_fstr() quote FT_STRING & FT_STRINGZ when storing the col_expr_val value (for filter creation). svn path=/trunk/; revision=24511
2008-02-25From Chris Maynard: Alphabetize the list of column types to choose from inStephen Fisher1-62/+65
the column preferences dialog. svn path=/trunk/; revision=24458
2008-02-22Improved custom columns with custom title.Stig Bjørlykke1-0/+1
Fixed a crash when adding an empty custom field. svn path=/trunk/; revision=24438
2008-02-13Check in changes originally checked in as SVN revision 24308 (new columnStephen Fisher1-0/+1
type: Custom) that were backed out in SVN revision 24309. Changes since that revision include a reworking of the handling of the cfile/cinfo variables in epan/column-utils.c, addition of three new functions to libwireshark.def and a bug fix to prevent a crash when no custom columns were not in use. Compilation verified locally on MacOS X, Linux and Windows. svn path=/trunk/; revision=24317
2008-02-12Revert commit 24308 until I can get it to compile on Windows/Linux/SolarisStephen Fisher1-1/+0
(strangely, it compiled fine on my MacOS X machine). svn path=/trunk/; revision=24309
2008-02-12Introduce a new column type called custom, which lets you put any displayStephen Fisher1-0/+1
filter name in the description field and it will display that field in the packet list if it occurs in that packet. Note that the more common fields are implemented, but a number of them remain to be implemented in epan/proto.c. I will work on these other fields as I have time. svn path=/trunk/; revision=24308
2007-10-03This patch adds two new column types:Sake Blok1-0/+2
- COL_REL_CONV_TIME which is used to display the time relative to the first frame that was seen in the conversation - COL_DELTA_CONV_TIME which is used to display the delta time from the previous frame of the conversation It also adds the function "col_set_time()" to "epan/column-utils.[ch]" which can be called from within a dissector to set either of these two columns to the appropiate time. Last but not least, it lets the tcp-dissector make use of these two columns. svn path=/trunk/; revision=23058
2007-09-22Simplify the parsing of column preferences, which should make it easierGerald Combs1-1/+1
to add column prefs in the future. Fix up whitespace in a couple of places. svn path=/trunk/; revision=22923
2007-08-17Instead of converting between 802.11 frequencies and channels umpteenGerald Combs1-0/+1
different ways, add a set of common conversion routines. Add a "Frequency/Channel" column and fill it in where we can. Fix RSSI column printing in PPI. Fix up whitespace along the way. svn path=/trunk/; revision=22538
2007-07-23- add a column for the expert info severity levelUlf Lamping1-0/+1
- fix a column related bug introduced in SVN 20118 svn path=/trunk/; revision=22387
2007-06-04Fix for bug #93: changes to the columns has no effect until restartStephen Fisher1-0/+1
These changes allow the packet list clist to be destroyed and recreated with the new column titles/values/order that the user changed in the preferences without restarting Wireshark. svn path=/trunk/; revision=22038
2007-03-23From Sake Blok:Stephen Fisher1-0/+1
Fix for bug #491: Unexpected frame.time_delta behavior This patch ... fixes bug 491. It does this by changing the behaviour of the frame.time_delta field so it reflects the delta time between captured packets (tshark already did this). To keep the delta time between displayed packets, the field frame.time_delta_displayed is created. svn path=/trunk/; revision=21154
2007-01-18PutGuy Harris1-6/+11
#ifdef __cplusplus extern "C" { #endif /* __cplusplus */ ... #ifdef __cplusplus } #endif /* __cplusplus */ wrappers into some header files, for the benefit of C++ plugins. Also, add multiple-include protections. svn path=/trunk/; revision=20485
2006-12-11From Thomas Sillaber:Stephen Fisher1-0/+2
Create two new columns: IP DSCP and L2 COS (802.1p) svn path=/trunk/; revision=20118
2006-11-29Froim Rene Pilz:Anders Broman1-0/+2
This patch consists also the last issues. Additionally it solves: - For the SSCOP frames the AAL5 decoding was not performed due to an earlier patch. This caused that no SSCOP message was properly decoded. - As the detection between a LANE frame and a SSCOP frame is rather hard a switch within the atm dissector is included which enforce SSCOP dissecting over a LANE frame. At the moment I do not see a better solution for that. svn path=/trunk/; revision=20013
2006-06-26add a new column DCE/RPC context IDUlf Lamping1-1/+2
svn path=/trunk/; revision=18578
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-02from Daniele Orlandi:Anders Broman1-0/+1
The attached patch adds support for LAPD frames captured using vISDN thru libpcap. The support has already been included in libpcap. The patch adds a new wiretap encapsulation, the necessary glue to decode SLL-encapsulated frames, and some minor change in the LAPD dissector in order to support the remote-to-remote frames captured on the ISDN E-Channel. Please apply ethereal-encap-table.diff before, as it fixes a misalignment in the encapsulation names table. svn path=/trunk/; revision=17451
2006-01-20Mike Hall:Jörg Mayer1-0/+1
This will add the ability to configure a .1q vlan column in ethereal. Me: Change 1q -> 1Q svn path=/trunk/; revision=17058
2005-08-24fix a comment typoUlf Lamping1-1/+1
svn path=/trunk/; revision=15518
2005-06-30add a new DCE/RPC related column, which contains the call_id for connection ↵Ulf Lamping1-0/+1
oriented packets or the sequence number for connectionless (datagram) packets. This is extremely useful, to keep track of the corresponding request/response packets of a DCE/RPC call (which can be quite a lot packets if fragmentation is used). svn path=/trunk/; revision=14826
2005-04-01From Mark C Brown NETTL updatesRonnie Sahlberg1-0/+2
svn path=/trunk/; revision=13999
2004-12-30Make the "col_data" field in a "column_info" structure a pointer to anGuy Harris1-12/+12
array of "const char *" rather than to an array of "char *", and make the second argument of "col_set_str()" a "const char *" - there's no guarantee that "col_data" points to something you're allowed to modify. svn path=/trunk/; revision=12875
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-07-05From Jouni Malinen: add columns for the 802.11 data rate and signalGuy Harris1-1/+3
strength for AVS headers. Also add them for the Prism and Radiotap headers, and for the pseudo-header from non-native captures. svn path=/trunk/; revision=11316
2004-01-31Fix the spelling of "cumulative" (and variables whose names derive fromGuy Harris1-2/+2
that spelling). svn path=/trunk/; revision=9917
2003-12-09Don't automatically size the columns - that's expensive in largeGuy Harris1-2/+1
captures, as it has to compute the width of an auto-resizing column in every row. Just pick fixed widths for the columns (and tune the width of the "Protocol" column so that it's not narrower than the column title). svn path=/trunk/; revision=9219