aboutsummaryrefslogtreecommitdiffstats
path: root/rawshark.c
AgeCommit message (Collapse)AuthorFilesLines
2008-05-07Fix some of the Errors/warnings detected by checkapi.Anders Broman1-1/+1
svn path=/trunk/; revision=25248
2008-03-21Make tshark and rawshark behave similar to wireshark when ↵Sake Blok1-4/+8
"frame.time_delta_displayed" is used within a display filter. (the usefullness of "frame.time_delta_displayed" in a display filter is very limited since it bites it's own tail. Still, wireshark and tshark should at least show the same behaviour) svn path=/trunk/; revision=24708
2008-03-16From Peter Fuller: free pref_str in set_link_type() if preferences aren't ↵Jeff Morriss1-5/+12
set. From me: call get_credential_inf() at startup. svn path=/trunk/; revision=24656
2008-03-01Custom column updates:Stephen Fisher1-2/+2
- 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-23g_strncasecmp --> g_ascii_strncasecmpBill Meier1-1/+1
svn path=/trunk/; revision=24443
2008-02-20Convert any supplied encapsulation from libpcap to wiretap so that DLTs otherGerald Combs1-1/+7
than Ethernet work. svn path=/trunk/; revision=24403
2008-02-18Fix some some propertiesBill Meier1-0/+0
svn path=/trunk/; revision=24380
2008-02-17Add a missing default case to avoid a warning.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=24367
2008-02-16Now that we're no longer linking with capture_info.c, etc., we don'tGuy Harris1-69/+0
need a bunch of dummy routines. svn path=/trunk/; revision=24344
2008-02-16Fix compilation on non-Windows systems.Gerald Combs1-44/+24
svn path=/trunk/; revision=24340
2008-02-15Add rawshark, a utility that, when given raw pcap-formatted packets andGerald Combs1-0/+1759
a list of fields, prints the field values found in each packet. Packet data can be specified as a libpcap DLT, e.g. "EN10MB" or an upper-layer protocol, e.g. "http". svn path=/trunk/; revision=24339