added version.h to svn, and other minor changes

This commit is contained in:
Brian Tierney 2009-11-13 18:29:10 +00:00
parent 9e1f731a44
commit 7d8b10f945
4 changed files with 10 additions and 0 deletions

View File

@ -9,6 +9,8 @@ Current list of things to fix/add to iperf 3.0
- better packaging/makefile, README, LICENCE, etc files
- currently several places in the code where a linked list must be scanned to find the end.
It would be better to store a pointer to the last element.
- reedd -Z option (linux tcp congestion control algoritm)
- readd flog to set IP_TOS (-S)
- finish/fix receive_result_from_server()
- should this be called for TCP too, or only UDP (currently its both,
but I think it should be UDP only, or maybe a command line option for TCP

View File

@ -86,6 +86,7 @@ Server specific:\n\
;
#ifdef NOT_YET_SUPPORTED /* still working on these */
-S, --tos N set IP 'Type of Service' bit \n\
-Z, --linux-congestion <algo> set TCP congestion control algorithm (Linux only)\n\
-6, --IPv6Version Set the domain to IPv6\n\

View File

@ -51,6 +51,11 @@ static struct option longopts[] =
{"Set-mss", required_argument, NULL, 'M'},
{"version", no_argument, NULL, 'v'},
{"help", no_argument, NULL, 'h'},
#ifdef ADD_WHEN_SUPPORTED
{"tos", required_argument, NULL, 'S'},
{"linux-congestion", required_argument, NULL, 'Z'},
{"daemon", no_argument, NULL, 'D'},
#endif
{NULL, 0, NULL, 0}
};

2
src/version.h Normal file
View File

@ -0,0 +1,2 @@
#define IPERF_VERSION "3.0-ALPHA"
#define IPERF_VERSION_DATE "10 Nov 2009"