Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
f0bf2233
Commit
f0bf2233
authored
Oct 20, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the word "experimental" since HTTP/2 has been finalized
parent
48edbc86
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
11 deletions
+7
-11
contrib/nghttpx.service.in
contrib/nghttpx.service.in
+1
-1
doc/conf.py.in
doc/conf.py.in
+3
-6
doc/sources/index.rst
doc/sources/index.rst
+1
-2
src/nghttp.cc
src/nghttp.cc
+1
-1
src/nghttpd.cc
src/nghttpd.cc
+1
-1
No files found.
contrib/nghttpx.service.in
View file @
f0bf2233
[Unit]
Description=HTTP/2
experimental
proxy
Description=HTTP/2 proxy
After=network.target
[Service]
...
...
doc/conf.py.in
View file @
f0bf2233
...
...
@@ -244,12 +244,9 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('nghttp.1', 'nghttp', u'HTTP/2 experimental client',
[u'Tatsuhiro Tsujikawa'], 1),
('nghttpd.1', 'nghttpd', u'HTTP/2 experimental server',
[u'Tatsuhiro Tsujikawa'], 1),
('nghttpx.1', 'nghttpx', u'HTTP/2 experimental proxy',
[u'Tatsuhiro Tsujikawa'], 1),
('nghttp.1', 'nghttp', u'HTTP/2 client', [u'Tatsuhiro Tsujikawa'], 1),
('nghttpd.1', 'nghttpd', u'HTTP/2 server', [u'Tatsuhiro Tsujikawa'], 1),
('nghttpx.1', 'nghttpx', u'HTTP/2 proxy', [u'Tatsuhiro Tsujikawa'], 1),
('h2load.1', 'h2load', u'HTTP/2 benchmarking tool',
[u'Tatsuhiro Tsujikawa'], 1)
]
doc/sources/index.rst
View file @
f0bf2233
...
...
@@ -6,8 +6,7 @@
nghttp2 - HTTP/2 C Library
============================
This is an experimental implementation of Hypertext Transfer Protocol
version 2.
This is an implementation of Hypertext Transfer Protocol version 2.
The project is hosted at `github.com/tatsuhiro-t/nghttp2 <https://github.com/tatsuhiro-t/nghttp2>`_.
...
...
src/nghttp.cc
View file @
f0bf2233
...
...
@@ -2356,7 +2356,7 @@ void print_version(std::ostream &out) {
namespace
{
void
print_usage
(
std
::
ostream
&
out
)
{
out
<<
R"(Usage: nghttp [OPTIONS]... <URI>...
HTTP/2
experimental
client)"
<<
std
::
endl
;
HTTP/2 client)"
<<
std
::
endl
;
}
}
// namespace
...
...
src/nghttpd.cc
View file @
f0bf2233
...
...
@@ -87,7 +87,7 @@ void print_version(std::ostream &out) {
namespace
{
void
print_usage
(
std
::
ostream
&
out
)
{
out
<<
"Usage: nghttpd [OPTION]... <PORT> [<PRIVATE_KEY> <CERT>]
\n
"
<<
"HTTP/2
experimental
server"
<<
std
::
endl
;
<<
"HTTP/2 server"
<<
std
::
endl
;
}
}
// namespace
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment