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
97533c96
Commit
97533c96
authored
Aug 20, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Fix gcc compiler warning
parent
d6b495f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/shrpx_listen_handler.cc
src/shrpx_listen_handler.cc
+2
-2
src/shrpx_listen_handler.h
src/shrpx_listen_handler.h
+1
-1
No files found.
src/shrpx_listen_handler.cc
View file @
97533c96
...
...
@@ -55,8 +55,8 @@ ListenHandler::ListenHandler(event_base *evbase, SSL_CTX *sv_ssl_ctx,
evlistener4_
(
nullptr
),
evlistener6_
(
nullptr
),
worker_stat_
(
util
::
make_unique
<
WorkerStat
>
()),
worker_round_robin_cnt
_
(
0
),
num_worker_shutdown
_
(
0
)
num_worker_shutdown
_
(
0
),
worker_round_robin_cnt
_
(
0
)
{}
ListenHandler
::~
ListenHandler
()
...
...
src/shrpx_listen_handler.h
View file @
97533c96
...
...
@@ -93,8 +93,8 @@ private:
evconnlistener
*
evlistener4_
;
evconnlistener
*
evlistener6_
;
std
::
unique_ptr
<
WorkerStat
>
worker_stat_
;
size_t
num_worker_shutdown_
;
unsigned
int
worker_round_robin_cnt_
;
int
num_worker_shutdown_
;
};
}
// namespace shrpx
...
...
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