aboutsummaryrefslogtreecommitdiffstats
path: root/packet-pflog.c
AgeCommit message (Collapse)AuthorFilesLines
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-3/+3
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-07-15From Joerg Mayer:Guy Harris1-7/+7
Use the GLib macros to convert from network to host byte order. svn path=/trunk/; revision=5879
2002-04-08Get rid of an unused variable.Guy Harris1-5/+4
Don't register the PFLOG dissector by name; it's only called through the "wtap_encap" dissector table. svn path=/trunk/; revision=5118
2002-02-05Clean up a bunch of things:Guy Harris1-42/+78
use value_string tables and make numerical fields numeric, with associated value_string tables, rather than strings; make a signed integer field signed, which means we don't have to format the item for it in the protocol tree ourselves; give it a long protocol name, and make the short protocol name all-caps, as with other short protocol names. svn path=/trunk/; revision=4696
2002-01-30Include <string.h> to declare various string functions.Guy Harris1-1/+2
Include "snprintf.h", when needed, to declare "snprintf()" on platforms that don't have it. Fix some formats and arguments to various printing routines. Fix "diameter_time_to_string()" to properly fetch the time value from the data buffer handed to it. svn path=/trunk/; revision=4639
2002-01-29Support for capturing on, and reading captures from, OpenBSD firewallGuy Harris1-0/+212
logging virtual interface, from Mike Frantzen. svn path=/trunk/; revision=4616