aboutsummaryrefslogtreecommitdiffstats
path: root/packet-prism.c
AgeCommit message (Collapse)AuthorFilesLines
2004-07-07Update comments and note that values are in *host* byte order, as inGuy Harris1-40/+47
"the byte order of the host that wrote the capture", not "the byte order of the host *reading* the capture". Don't show values that aren't present - the "status" field of the item for the value is 0 if it's present and non-0 if absent. Get rid of extra VALFIELD() call for the data rate (we handle it ourselves). svn path=/trunk/; revision=11327
2004-07-06Add some notes on the stuff in the Prism header.Guy Harris1-3/+46
svn path=/trunk/; revision=11325
2004-07-06In "packet-ieee80211.c", use the same scheme for displaying the dataGuy Harris1-3/+10
rate used elsewhere, rather than using floating point. In "packet-prism.c", show the data rate correctly in the column display, and show it as Mb/s in the protocol tree, and show it as "Data Rate", as it is in "packet-ieee80211.c". In "packet-radiotap.c" and "packet-wlancap.c", show it as "Data Rate" rather than as "Datarate". Show the units uniformly as "Mb/s", rather than "mb/s" (it's mega, not milli) or "Mbps", except for the AVS header, where it's Kb/s. svn path=/trunk/; revision=11323
2004-07-05From Jouni Malinen: add columns for the 802.11 data rate and signalGuy Harris1-23/+38
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-02-14From Pavel Kankovsky: fix the name of the channel field in the PrismGuy Harris1-3/+3
802.11 radio header. svn path=/trunk/; revision=10063
2003-03-08Ruediger Oertel <ro@suse.de>Jörg Mayer1-6/+6
Fix invalid preprocessor token pasting. svn path=/trunk/; revision=7325
2002-11-06From Solomon Peachy: support for new "wlancap" 802.11 extra-informationGuy Harris1-7/+40
header. Add overflow checks to "BYTES_ARE_IN_FRAME()", and cast all arguments to unsigned values (negative values should never be passed) to squelch compiler warnings. svn path=/trunk/; revision=6567
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-7/+7
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-6/+2
equivalents for the toplevel directory. The removal of winsock2.h will hopefully not cause any problems under MSVC++, as those files using struct timeval still include wtap.h, which still includes winsock2.h. svn path=/trunk/; revision=5932
2002-01-21Include files from the "epan" directory and subdirectories thereof withGuy Harris1-2/+2
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). svn path=/trunk/; revision=4586
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"Guy Harris1-7/+7
structure to the "packet_info" structure; only stuff that's permanently stored with each frame should be in the "frame_data" structure, and the "column_info" structure is not guaranteed to hold the column values for that frame at all times - it was only in the "frame_data" structure so that it could be passed to dissectors, and, as all dissectors are now passed a pointer to a "packet_info" structure, it could just as well be put in the "packet_info" structure. That saves memory, by shrinking the "frame_data" structure (there's one of those per frame), and also lets us clean up the code a bit. svn path=/trunk/; revision=4370
2001-12-03Make "dissector_add()", "dissector_delete()", and "dissector_change()"Guy Harris1-4/+7
take a dissector handle as an argument, rather than a pointer to a dissector function and a protocol ID. Associate dissector handles with dissector table entries. svn path=/trunk/; revision=4308
2001-11-30Add support for LocalTalk Link Access Protocol.Guy Harris1-2/+2
Rename WTAP_ENCAP_PRISM to WTAP_ENCAP_PRISM_HEADER, to match DLT_PRISM_HEADER. Add in missing capture support for WTAP_ENCAP_PRISM_HEADER when capturing with "pcap_open_live()" rather than reading the capture from a pipe. svn path=/trunk/; revision=4299
2001-11-28Squelch compiler warnings.Guy Harris1-2/+2
svn path=/trunk/; revision=4294
2001-11-28Support for 802.11+Prism II monitor-mode link-layer headers, fromGuy Harris1-0/+209
Tim Newsham. Add in missing item for WTAP_ENCAP_CISCO_IOS in the Wiretap encapsulation type table. svn path=/trunk/; revision=4290