summaryrefslogtreecommitdiffstats
path: root/usr.bin/tcpbench/tcpbench.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Move connect code out ouf clientloop into own function. This code can beclaudio2009-09-081-22/+32
| | | | reused by the upcomming UDP mode. OK henning
* There is no need for two getaddrinfo implementations for client and server.claudio2009-09-081-23/+12
| | | | | Merge them and make the client code look more like the server one. OK henning@
* gcc2 hates claudioderaadt2009-08-291-3/+1
|
* Change the way how the server works. Instead of forking of a child perclaudio2009-08-281-240/+377
| | | | | | | | connection do multiplexing via poll(2). This allows to use more concurrent connections and to specify additional kvm data to fetch. This was all done by Christiano Farina Haesbaert (christiano.fh gmail dot com) plus some input by myself. OK henning@
* Print a warning when rdomain is used on non-AF_INET sockets. Those areclaudio2009-08-131-2/+4
| | | | currently not supported. Requested by djm sort of.
* Allow tcpbench to bind to a different rdomain.claudio2009-08-131-3/+22
| | | | OK sthen, djm and maybe more
* remove unused variablechl2008-09-181-1/+0
| | | | sure henning@
* only update stats when we actually wrote sth, relevant for -n, ok djmhenning2008-08-141-10/+11
| | | | From: Pierre Riteau <pierre.riteau@gmail.com>
* some minor improvements from Pierre Riteau; ok djmjmc2008-06-261-19/+6
|
* turd polishing (useless chatter removed), ok djmhenning2008-06-151-2/+5
|
* allow the tcpbench client side to open more than one tcp connectionhenning2008-06-121-67/+102
| | | | to the server and use them simultaniously. ok djm ryan
* fix uninitialised variable; from ray@djm2008-05-151-3/+3
|
* s/bench/tcpbench/ in usage(); spotted by schellekens.dries AT gmail.comdjm2008-05-091-3/+3
|
* import tcpbench, a small TCP benchmarking tool that can also sampledjm2008-05-091-0/+829
relevant kernel variables via kvm(3) ok dlg@ deraadt@