Next | Query returned 30 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2009-06-14 20:09:49 by Joerg Sonnenberger | Files touched by this commit (291)
Log message:
Remove @dirrm entries from PLISTs
   2007-01-07 10:14:16 by Roland Illig | Files touched by this commit (412)
Log message:
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.

Fixes PR 35265, although I did not use the patch provided therein.
   2006-03-04 22:31:14 by Johnny C. Lam | Files touched by this commit (2257)
Log message:
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to \ 
"pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
   2005-08-26 10:32:13 by Adam Ciarcinski | Files touched by this commit (3)
Log message:
Changes 6.6.2:
Fixed tcpdump.c to trace IP packets buried under VLAN headers.

Changes 6.6.3:
Added a function MissingData() in trace.c to check if TCP segments were
missing or were truncated when the -e option is given to extract
contents.

Changes 6.6.4:
Adding in the INBOUNDS module into the main tcptrace development tree.
It is NOT built in by default though; you need to uncomment a line in
Makefile.in to enable it.

Changes 6.6.5:
* Josh fixed the file format searching order, putting tcpdump format to
the end in file_formats.h as a work around for libpcap brokenness.
* Fixed Mfopen() in mfiles.c to open content data files that we
generate in "binary" mode - by changing fopen mode from "w" \ 
to "wb+" and "a"
to "ab+". The 'b' is dummy in UNIX systems, but seems to have some
semantic in the Windows world.
* Fixed QuitSig() function in tcptrace.c by adding a call to
udptrace_done() so that we print out UDP connection stats too (if one
were piping live tcpdump traffic to tcptrace and "ctrl-c"-ed it in the
middle, for example). On the way, also fixed the arbitrary "buf[4096]"
declaration to be written correctly as "buf[COMP_HDR_SIZE]" in the
PipeFitting() function.

Changes 6.6.6:
Fixed the callback function in tcpdump.c to prevent garbage data from
getting into the ip_buf buffer.

Changes 6.6.7:
Fixed bugs found in the AVL search function that had major bugs /
complexity issues.
   2005-06-17 05:50:45 by Johnny C. Lam | Files touched by this commit (387)
Log message:
Create directories before installing files into them.
   2005-04-11 23:48:17 by Todd Vierling | Files touched by this commit (3539)
Log message:
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
   2004-12-03 16:15:13 by Thomas Klausner | Files touched by this commit (409)
Log message:
Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
   2004-10-03 02:18:40 by Todd Vierling | Files touched by this commit (863)
Log message:
Libtool fix for PR pkg/26633, and other issues.  Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
   2004-08-17 21:19:53 by Adrian Portelli | Files touched by this commit (2)
Log message:
- make pkglint happy
- fix typos in DESCR

suggestions by snj@.
   2004-08-17 13:10:28 by Adrian Portelli | Files touched by this commit (2)
Log message:
- Update tcptrace to 6.6.1
- Remove FreeBSD header from pkgsrc Makefile
- ok'ed snj@/wiz@

>From the ChangeLog:
- Fixed the processing of duplicate ACKs as in the BSD stack to count towards
  the 3 dupacks required for fast-retransmit.
- Fixed the bug in processing IPv6 extension headers in ipv6.c:gethdrlength()
  based on the patch sent by Thomas Bohnert.
- Added dsack counter to long output format and dsack sample input and output
- Fixed bug in the calculation of the "avg win adv" field, so that now avg.
  falls in between min and max.
- Changes made to make gcc-3.3 make lesser warnings with tcptrace.
- Made the --csv/--tsv/--sv options' implementation better.
- Fixed a bug in traffic module, so that the number of open connections are
  printed correct in the traffic_stats.dat file, even without giving
  the -C option.
- Included the code to recognize Endace ERF (Extensible Record Format), sent
  by Jesper Peterson.
- Included the code to recognize the PPP (Point-to-Point) input file format,
  sent by Yann Samama.
- Fixing the bug with filtering connections based on hostname/portname with
  the -f option.
- Included the code to generate PF file with '-c' option. Error messages are
  made more logical when generating error messages for unsupported input and
  captured file formats.
- Applied patch from Ulisses Alonso Camaro that lets SYN segments following
  zero window advertisements from the opposite direction *not* be treated
  as window probes. Also fixed a compilation problem due to the previous
  patch by Jitesh (moved the "static int count=0" line to the beginning of
  trace_done() function in trace.c).
- Fixed bunch of gcc3.3.1 warnings in erf.c (unused variable warning), netm.c,
  ns.c (dereferencing type-punned pointer warnings).
- Fixed the typo(?) that made us have a #ifndef __WIN32 to #ifdef __WIN32 in
  ipv6.h for the in6_addr structure definition.
- Patching in changes to mod_http.c making it more robust to print
  information in cases where connections get closed with RST instead of
  FINs and other trivia based on Yufei Wang's patch.
- Applying the patch courtesy John Heffner that displays a yellow rwnd line
  in owin plots. Also adding --showrwinline option to control the yellow
  rwnd line, in case it gets annoying.
- Also fixing trivia (type conversions for certain uint to int, etc.) in
  output.c to keep gcc3.3 from warning on MacOSX 10.3.
- All the changes you see above in the 6.4.x series are part of the release
  6.6.0.
- Includes a bugfix by Ramani, that restored the old semantics of the
  SameConn() and WhichDir() functions and includes
  new functions AVL_CheckHash() and AVL_CheckDir() to support the AVL tree
  hash-bucket implementation.
- Includes a fix to ns.c to correctly read port numbers; added
  functionality to track LEAST variables and reno LEAST algorithm to trace.c;
  added isRTO() in rexmit.c : all by Wes.

Next | Query returned 30 messages, browsing 11 to 20 | Previous