aboutsummaryrefslogtreecommitdiff
path: root/net/pathneck
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove dead mirrorBabak Farrokhi2017-01-091-2/+1
| | | | | | | | | Reviewed by: bapt Approved by: bapt Differential Revision: https://reviews.freebsd.org/D9090 Notes: svn path=/head/; revision=430917
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* - Clarify LICENSEBabak Farrokhi2015-08-291-10/+13
| | | | | | | | Approved by: mat Differential Revision: https://reviews.freebsd.org/D3526 Notes: svn path=/head/; revision=395565
* net/patchneck: Makefile cleanupBabak Farrokhi2015-08-291-4/+5
| | | | | | | | | | | - Remove dead MASTER_SITES - Take maintainership Approved by: bapt, mat Differential Revision: https://reviews.freebsd.org/D3513 Notes: svn path=/head/; revision=395548
* Support stagingEmanuel Haupt2014-02-241-7/+7
| | | | Notes: svn path=/head/; revision=345847
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | net) Notes: svn path=/head/; revision=327755
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Reset farrokhi@freebsd.org due to long period of inactivity.Martin Wilke2009-03-091-1/+1
| | | | | | | Approved by: portmgr (linimon) Notes: svn path=/head/; revision=229780
* Change my email address to farrokhi@ in all ports that I maintain.Babak Farrokhi2006-11-081-1/+1
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=176802
* - Update mastersite.Jean Milanez Melo2006-07-072-2/+3
| | | | | | | | | | - Update WWW. PR: ports/99801 Submitted by: Babak Farrokhi <babak@farrokhi.net> (maintainer) Notes: svn path=/head/; revision=167134
* - Update MASTER_SITESPav Lucistnik2006-02-071-3/+2
| | | | | | | | | | - Portlint PR: ports/92918 Submitted by: Babak Farrokhi <babak@farrokhi.net> (maintainer) Notes: svn path=/head/; revision=155448
* - Update to 1.3Pav Lucistnik2006-01-062-5/+4
| | | | | | | | PR: ports/91376 Submitted by: Babak Farrokhi <babak@farrokhi.net> (maintainer) Notes: svn path=/head/; revision=152892
* - Update distinfo, tarball was rerolled with a simple constraint check [1]Emanuel Haupt2006-01-012-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | - Bump PORTREVISION [1] diff -ruN pathneck-1.2.old/pathneck.c pathneck-1.2/pathneck.c --- pathneck-1.2.old/pathneck.c Sun Nov 7 00:00:03 2004 +++ pathneck-1.2/pathneck.c Sun Dec 25 20:34:39 2005 @@ -539,7 +539,7 @@ continue; /* if "-c" is specified, rtt_i could exceed MAX_RTT_NUM */ - if (rtt_i < MAX_RTT_NUM) { + if (rtt_i < MAX_RTT_NUM && len == 60) { memcpy(rtt_rec[rtt_i], buffer, len); rtt_arr_time[rtt_i] = get_time(); pre_time = rtt_arr_time[rtt_i]; PR: 91132 Submitted by: Babak Farrokhi <babak@farrokhi.net> (maintainer) Notes: svn path=/head/; revision=152516
* Pathneck is an active probing tool that can detect bottleneck location ofRenato Botelho2005-12-223-0/+48
network path. It only needs single end control, and has relatively small probing overhead (33.6KB for one probing in the default setting). WWW: http://gs274.sp.cs.cmu.edu/www/pathneck/ PR: ports/90801 Submitted by: Babak Farrokhi <babak@farrokhi.net> Notes: svn path=/head/; revision=151841