summaryrefslogtreecommitdiff
path: root/epan/column_info.h
AgeCommit message (Collapse)AuthorFilesLines
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
2003-12-02From Didier Gautheron: for each column format type, save the first andGuy Harris1-1/+3
last columns, if any, with that format, and use that to speed up processing of columns with a particular format and checking whether we're displaying a column with a particular format. svn path=/trunk/; revision=9147
2003-09-03And for Cal,Ronnie Sahlberg1-1/+2
Ethereal presents a column to display culmulative bytes into the capture. A new column type is added : Culmulative Bytes. While PacketLength column type specifies the number of bytes in the current packet, Culmulative Bytes specifies the culmulative number of bytes from the start of the capture. svn path=/trunk/; revision=8359
2003-04-16Add the notion of a "fence" to columns. A dissector can set the fenceGuy Harris1-4/+3
to "protect" what's currently in the column, so that attempts to clear the column will only clear stuff after the fence and attempts to overwrite the column will append stuff after the fence. This, for example, allows a dissector to arrange that the Info column contain information for its protocol and for protocols running atop it. svn path=/trunk/; revision=7466
2003-01-22From Dinesh Dutt:Guy Harris1-1/+4
- A new decoder called MDSHDR which decodes the internal header of the Cisco MDS switch (this is different from the Boardwalk header). - Support for some more new columns as part of FC support. - Fixed the decoding of the Special Frame in FCIP. - Fixed the decoding of credit management type field in FLOGI/PLOGI frame in FC-ELS. svn path=/trunk/; revision=6974
2002-12-10Add a new type of column for the circuit ID (Frame Relay DLCI, ISDNGuy Harris1-1/+2
channel number, X.25 logical channel number). Clean up white space and the like, and get rid of unnecessary arguments to "col_set_port()". svn path=/trunk/; revision=6772
2002-12-10From Alfred Koebler: add support for a column for the interface andGuy Harris1-1/+2
direction in Firewall-1 monitor files. svn path=/trunk/; revision=6771
2002-12-08From Dinesh Dutt: Add Fibre Channel support, including FCIP, Basic FCGerald Combs1-1/+3
header, Extended Link Service, Interswitch Link Service, FCP, and IPFC. svn path=/trunk/; revision=6757
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-4/+4
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6116
2002-01-11From Jirka Novak:Guy Harris1-1/+3
Support for generating filter expressions based on packet list column values Support for adding filter expressions generated from column or protocol tree field values to the current expression rather than replacing the current expression svn path=/trunk/; revision=4522
2001-04-01Moved the column_info structure and related enum from packet.{c,h} toEd Warnicke1-0/+92
column_info.h. svn path=/trunk/; revision=3222