Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
The Tor Project
Core
Tor
Commits
3393c8d5
Commit
3393c8d5
authored
5 years ago
by
George Kadianakis
Browse files
Options
Downloads
Plain Diff
Merge branch 'maint-0.4.0'
parents
b371ea5b
217db9ef
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
changes/bug30021
+8
-0
8 additions, 0 deletions
changes/bug30021
src/lib/tls/tortls_openssl.c
+1
-1
1 addition, 1 deletion
src/lib/tls/tortls_openssl.c
with
9 additions
and
1 deletion
changes/bug30021
0 → 100644
+
8
−
0
View file @
3393c8d5
o Minor bugfixes (TLS protocol, integration tests):
- When classifying a client's selection of TLS ciphers, if the client
ciphers are not yet available, do not cache the result. Previously,
we had cached the unavailability of the cipher list and never looked
again, which in turn led us to assume that the client only supported
the ancient V1 link protocol. This, in turn, was causing Stem
integration tests to stall in some cases.
Fixes bug 30021; bugfix on 0.2.4.8-alpha.
This diff is collapsed.
Click to expand it.
src/lib/tls/tortls_openssl.c
+
1
−
1
View file @
3393c8d5
...
...
@@ -905,7 +905,7 @@ tor_tls_classify_client_ciphers(const SSL *ssl,
smartlist_free
(
elts
);
}
done:
if
(
tor_tls
)
if
(
tor_tls
&&
peer_ciphers
)
return
tor_tls
->
client_cipher_list_type
=
res
;
return
res
;
...
...
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