mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-28 04:03:29 -04:00
Some checks failed
Build / Check code style with Uncrustify (push) Has been cancelled
Build / gcc-mingw - x64 - OSSL (push) Has been cancelled
Build / gcc-mingw - x86 - OSSL (push) Has been cancelled
Build / gcc - ubuntu-24.04 - OpenSSL 3.0.13 --enable-pkcs11 (push) Has been cancelled
Build / gcc - ubuntu-22.04 - OpenSSL 3.0.2 --enable-pkcs11 (push) Has been cancelled
Build / gcc - ubuntu-22.04 - mbed TLS 2.28.0 (push) Has been cancelled
Build / clang-asan - ubuntu-22.04 - mbedtls (push) Has been cancelled
Build / clang-asan - ubuntu-22.04 - openssl (push) Has been cancelled
Build / clang-asan - ubuntu-24.04 - mbedtls (push) Has been cancelled
Build / clang-asan - ubuntu-24.04 - openssl (push) Has been cancelled
Build / macos-13 - libressl - asan (push) Has been cancelled
Build / macos-13 - openssl@1.1 - asan (push) Has been cancelled
Build / macos-13 - openssl@3 - asan (push) Has been cancelled
Build / macos-14 - libressl - asan (push) Has been cancelled
Build / macos-14 - openssl@1.1 - asan (push) Has been cancelled
Build / macos-14 - openssl@3 - asan (push) Has been cancelled
Build / macos-15 - libressl - asan (push) Has been cancelled
Build / macos-15 - openssl@1.1 - asan (push) Has been cancelled
Build / macos-15 - openssl@3 - asan (push) Has been cancelled
Build / macos-13 - libressl - normal (push) Has been cancelled
Build / macos-13 - openssl@1.1 - normal (push) Has been cancelled
Build / macos-13 - openssl@3 - normal (push) Has been cancelled
Build / macos-14 - libressl - normal (push) Has been cancelled
Build / macos-14 - openssl@1.1 - normal (push) Has been cancelled
Build / macos-14 - openssl@3 - normal (push) Has been cancelled
Build / macos-15 - libressl - normal (push) Has been cancelled
Build / macos-15 - openssl@1.1 - normal (push) Has been cancelled
Build / macos-15 - openssl@3 - normal (push) Has been cancelled
Build / msbuild - amd64 - openssl (push) Has been cancelled
Build / msbuild - arm64 - openssl (push) Has been cancelled
Build / msbuild - x86 - openssl (push) Has been cancelled
Build / clang asan - ubuntu-22.04 - libressl (push) Has been cancelled
Build / gcc normal - ubuntu-22.04 - libressl (push) Has been cancelled
Build / mingw unittest argv - x64 - OSSL (push) Has been cancelled
Build / mingw unittest auth_token - x64 - OSSL (push) Has been cancelled
Build / mingw unittest buffer - x64 - OSSL (push) Has been cancelled
Build / mingw unittest crypto - x64 - OSSL (push) Has been cancelled
Build / mingw unittest cryptoapi - x64 - OSSL (push) Has been cancelled
Build / mingw unittest misc - x64 - OSSL (push) Has been cancelled
Build / mingw unittest ncp - x64 - OSSL (push) Has been cancelled
Build / mingw unittest packet_id - x64 - OSSL (push) Has been cancelled
Build / mingw unittest pkt - x64 - OSSL (push) Has been cancelled
Build / mingw unittest provider - x64 - OSSL (push) Has been cancelled
Build / mingw unittest tls_crypt - x64 - OSSL (push) Has been cancelled
Build / mingw unittest argv - x86 - OSSL (push) Has been cancelled
Build / mingw unittest auth_token - x86 - OSSL (push) Has been cancelled
Build / mingw unittest buffer - x86 - OSSL (push) Has been cancelled
Build / mingw unittest crypto - x86 - OSSL (push) Has been cancelled
Build / mingw unittest cryptoapi - x86 - OSSL (push) Has been cancelled
Build / mingw unittest misc - x86 - OSSL (push) Has been cancelled
Build / mingw unittest ncp - x86 - OSSL (push) Has been cancelled
Build / mingw unittest packet_id - x86 - OSSL (push) Has been cancelled
Build / mingw unittest pkt - x86 - OSSL (push) Has been cancelled
Build / mingw unittest provider - x86 - OSSL (push) Has been cancelled
Build / mingw unittest tls_crypt - x86 - OSSL (push) Has been cancelled
* HTTPS upgrades
* 404 fixes, with hopefully better helpful links to the relevant documentation
* some trailing white space fixes
* resurrect utun-demo.c from a different source
* Don't touch openvpn.doxyfile.in though, as it was autogenerated
* Don't touch COPYING as it's an external license file
* The openvpn.net URLs will be addressed some other time
Signed-off-by: Christian Kujau <github@nerdbynature.de>
Acked-by: Frank Lichtenheld <frank@lichtenheld.com>
Message-Id: <20251006144249.23672-3-lists@nerdbynature.de>
URL: https://sourceforge.net/p/openvpn/mailman/message/59242866/
Signed-off-by: Gert Doering <gert@greenie.muc.de>
(cherry picked from commit 8c53b12ae6)
42 lines
2 KiB
ReStructuredText
42 lines
2 KiB
ReStructuredText
CONTRIBUTING TO THE OPENVPN PROJECT
|
|
===================================
|
|
|
|
Patches should be written against the Git "master" branch. Some patches may get
|
|
backported to a release branch.
|
|
|
|
The preferred procedure to send patches to the "openvpn-devel" mailing list:
|
|
|
|
- https://lists.sourceforge.net/lists/listinfo/openvpn-devel
|
|
|
|
While we do not merge GitHub pull requests as-is, we do allow their use for code
|
|
review purposes. After the patch has been ACKed (reviewed and accepted), it must
|
|
be sent to the mailing list. This last step does not necessarily need to be done
|
|
by the patch author, although that is definitely recommended.
|
|
|
|
When sending patches to "openvpn-devel" the subject line should be prefixed with
|
|
[PATCH]. To avoid merging issues the patches should be generated with
|
|
git-format-patch or sent using git-send-email. Try to split large patches into
|
|
small, atomic pieces to make reviews easier.
|
|
|
|
Please make sure that the source code formatting follows the guidelines at
|
|
https://community.openvpn.net/openvpn/wiki/CodeStyle. Automated checking can be
|
|
done with uncrustify (https://uncrustify.sourceforge.net/) and the configuration
|
|
file which can be found in the git repository at dev-tools/uncrustify.conf.
|
|
There is also a git pre-commit hook script, which runs uncrustify automatically
|
|
each time you commit and lets you format your code conveniently, if needed.
|
|
To install the hook simply run: dev-tools/git-pre-commit-uncrustify.sh install
|
|
|
|
If you want quick feedback on a patch before sending it to openvpn-devel mailing
|
|
list, you can visit the #openvpn-devel channel on irc.libera.chat. Note that
|
|
you need to be logged in to Libera to join the channel:
|
|
|
|
- https://libera.chat/guides/registration
|
|
|
|
More detailed contribution instructions are available here:
|
|
|
|
- https://community.openvpn.net/openvpn/wiki/DeveloperDocumentation
|
|
|
|
Note that the process for contributing to other OpenVPN projects such as
|
|
openvpn-build, openvpn-gui, tap-windows6 and easy-rsa may differ from what was
|
|
described above. Please refer to the contribution instructions of each
|
|
respective project.
|