diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-12-04 08:26:00 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-12-04 08:26:00 +0000 |
commit | 8032fa8a1bafcbf76d3cadcedb03480fbfd51ecf (patch) | |
tree | a634ca1961bfec804908e381e96ad6d793a7f2b9 /Makefile.nmake | |
parent | a1660d6d3afbaeccd77d8e34c695bf65a4f4f09e (diff) | |
download | wireshark-8032fa8a1bafcbf76d3cadcedb03480fbfd51ecf.tar.gz wireshark-8032fa8a1bafcbf76d3cadcedb03480fbfd51ecf.tar.bz2 wireshark-8032fa8a1bafcbf76d3cadcedb03480fbfd51ecf.zip |
Make the bytes-written information from Wiretap a long, as we allow
files to get that big.
From Thomas Wittwer and Matthias Nyffenegger:
Support for "ring buffer mode", wherein there's a ring buffer of N
capture files; as each capture file reaches its maximum size (the ring
buffer works only with a maximum capture file size specified), Ethereal
rolls over to the next capture file in the ring buffer, replacing
whatever packets might be in it with new packets.
svn path=/trunk/; revision=4323
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index fcfcdeb300..d3855abf10 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -1,7 +1,7 @@ ## Makefile for building ethereal.exe with Microsoft C and nmake ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake # -# $Id: Makefile.nmake,v 1.149 2001/12/04 07:32:00 guy Exp $ +# $Id: Makefile.nmake,v 1.150 2001/12/04 08:25:55 guy Exp $ include config.nmake include <win32.mak> @@ -262,6 +262,7 @@ ETHEREAL_COMMON_OBJECTS = \ ptvcursor.obj \ reassemble.obj \ register.obj \ + ringbuffer.obj \ util.obj \ xdlc.obj \ xmlstub.obj \ |