-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-812-835-control-connection-keepalive
- Loading branch information
Showing
27 changed files
with
490 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: test | ||
on: [push, pull_request] | ||
jobs: | ||
cppcheck-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install dependencies | ||
run: | | ||
sudo apt-get -y update && sudo apt-get install -y cppcheck && \ | ||
cppcheck . --force --inline-suppr | ||
build-test-latest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install dependencies | ||
run: | | ||
sudo apt-get -y update && sudo apt-get install -y build-essential | ||
- name: build | ||
run: | | ||
./configure && make && make check | ||
timeout 300 src/iperf3 -s & | ||
./test_commands.sh localhost | ||
build-test-ubuntu-20_04: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install dependencies | ||
run: | | ||
sudo apt-get -y update && sudo apt-get install -y build-essential | ||
- name: build | ||
run: | | ||
./configure && make && make check | ||
timeout 300 src/iperf3 -s & | ||
./test_commands.sh localhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,8 @@ Source code and issue tracker: https://github.com/esnet/iperf | |
|
||
Discussion forums: https://github.com/esnet/iperf/discussions | ||
|
||
Reporting security vulnerabilities: [email protected] | ||
|
||
Obtaining iperf3 | ||
---------------- | ||
|
||
|
@@ -78,8 +80,8 @@ These flags include: | |
-Z, --zerocopy use a 'zero copy' sendfile() method of sending data | ||
-A, --affinity n/n,m set CPU affinity | ||
|
||
Bug Reports | ||
----------- | ||
Bug and Security Reports | ||
------------------------ | ||
|
||
Before submitting a bug report, please make sure you're running the | ||
latest version of the code, and confirm that your issue has not | ||
|
@@ -99,6 +101,11 @@ sensitive information. | |
If you have a question about usage or about the code, please do *not* | ||
submit an issue. Please use one of the mailing lists for that. | ||
|
||
If you suspect there is a potential security issue, please contact the | ||
developers at: | ||
|
||
[email protected] | ||
|
||
Relation to iperf 2.x | ||
--------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,9 @@ Then submit to the iperf3 issue tracker on GitHub: | |
|
||
https://github.com/esnet/iperf/issues | ||
|
||
For reporting potential security issues, please contact the developers at | ||
[email protected]. | ||
|
||
**Note:** Issues submitted to the old iperf3 issue tracker on Google | ||
Code (or comments to existing issues on the Google Code issue tracker) | ||
will be ignored. | ||
|
@@ -130,8 +133,8 @@ The developers increment the: | |
Release Engineering Checklist | ||
----------------------------- | ||
|
||
1. Update the ``README`` and ``RELEASE_NOTES`` files to be accurate. Make sure | ||
that the "Known Issues" section of the ``README`` file and in this document | ||
1. Update the ``README.md`` and ``RELNOTES.md`` files to be accurate. Make sure | ||
that the "Known Issues" section of the ``README.md`` file and in this document | ||
are up to date. | ||
|
||
2. Compose a release announcement. Most of the release announcement | ||
|
@@ -142,7 +145,7 @@ Release Engineering Checklist | |
status`` emits no output), make the changes necessary to produce | ||
the new version, such as bumping version numbers:: | ||
|
||
vi RELEASE_NOTES # update version number and release date | ||
vi RELNOTES.md # update version number and release date | ||
vi configure.ac # update version parameter in AC_INIT | ||
vi src/iperf3.1 # update manpage revision date if needed | ||
vi src/libiperf.3 # update manpage revision date if needed | ||
|
@@ -214,12 +217,14 @@ Release Engineering Checklist | |
sending process by sending a copy to oneself first and attempting | ||
to verify the signature is highly encouraged. | ||
|
||
12. Update the iperf3 Project News section of the documentation site | ||
12. Update GitHub Releases with the current release notes. | ||
|
||
13. Update the iperf3 Project News section of the documentation site | ||
to announce the new release (see ``docs/news.rst`` and | ||
``docs/conf.py`` in the source tree) and deploy a new build of the | ||
documentation to GitHub Pages. | ||
|
||
13. If an update to the on-line manual page is needed, it can be | ||
14. If an update to the on-line manual page is needed, it can be | ||
generated with this sequence of commands (tested on CentOS 7) and | ||
import the result into ``invoking.rst``:: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.