Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
a72eca33
Commit
a72eca33
authored
6 years ago
by
Konstantinos Sideris
Browse files
Options
Downloads
Patches
Plain Diff
Immediately shutdown the http client on exit
parent
7051d802
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
deps/CMakeLists.txt
+1
-1
1 addition, 1 deletion
deps/CMakeLists.txt
src/main.cc
+2
-2
2 additions, 2 deletions
src/main.cc
with
3 additions
and
3 deletions
deps/CMakeLists.txt
+
1
−
1
View file @
a72eca33
...
...
@@ -40,7 +40,7 @@ set(MATRIX_STRUCTS_URL https://github.com/mujx/matrix-structs)
set
(
MATRIX_STRUCTS_TAG eeb7373729a1618e2b3838407863342b88b8a0de
)
set
(
MTXCLIENT_URL https://github.com/mujx/mtxclient
)
set
(
MTXCLIENT_TAG
68188721e042ff5b47ea9a87aa97d3a9efbca989
)
set
(
MTXCLIENT_TAG
96fd35e57d36511b10b7d30de7227c6cd2ffa386
)
set
(
OLM_URL https://git.matrix.org/git/olm.git
)
set
(
OLM_TAG 4065c8e11a33ba41133a086ed3de4da94dcb6bae
)
...
...
This diff is collapsed.
Click to expand it.
src/main.cc
+
2
−
2
View file @
a72eca33
...
...
@@ -166,9 +166,9 @@ main(int argc, char *argv[])
QObject
::
connect
(
&
app
,
&
QApplication
::
aboutToQuit
,
&
w
,
[
&
w
]()
{
w
.
saveCurrentWindowSize
();
if
(
http
::
v2
::
client
()
!=
nullptr
)
{
nhlog
::
net
()
->
info
(
"shutting down all I/O threads & open connections"
);
http
::
v2
::
client
()
->
shutdown
();
nhlog
::
net
()
->
debug
(
"shutting down all I/O threads & open connections"
);
http
::
v2
::
client
()
->
close
(
true
);
nhlog
::
net
()
->
debug
(
"bye"
);
}
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment