shrpx: make nghttpx -v show ngtcp2 and nghttp3 version as well

... if HTTP/3 support is built in.
This commit is contained in:
Daniel Stenberg 2021-11-04 15:42:51 +01:00
parent c4828dbd7c
commit 44f513aca2
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 6 additions and 1 deletions

View File

@ -2053,7 +2053,12 @@ void fill_default_config(Config *config) {
namespace {
void print_version(std::ostream &out) {
out << "nghttpx nghttp2/" NGHTTP2_VERSION << std::endl;
out << "nghttpx nghttp2/" NGHTTP2_VERSION
#ifdef ENABLE_HTTP3
" ngtcp2/" NGTCP2_VERSION
" nghttp3/" NGHTTP3_VERSION
#endif
<< std::endl;
}
} // namespace