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
0b82ce3e
Commit
0b82ce3e
authored
14 years ago
by
Sebastian Hahn
Committed by
Roger Dingledine
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Demote a warning about missing client ciphers
parent
18678e5f
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/demote_no_cipher_warning
+5
-0
5 additions, 0 deletions
changes/demote_no_cipher_warning
src/common/tortls.c
+2
-2
2 additions, 2 deletions
src/common/tortls.c
with
7 additions
and
2 deletions
changes/demote_no_cipher_warning
0 → 100644
+
5
−
0
View file @
0b82ce3e
o Minor bugfixes:
- Demote a warning that relay operators might get when someone is
trying to talk to their OrPort. It is neither the operator's fault
nor can they do anything about it. Bugfix on 0.2.0.14-alpha; fixes
bug 1364.
This diff is collapsed.
Click to expand it.
src/common/tortls.c
+
2
−
2
View file @
0b82ce3e
...
...
@@ -746,11 +746,11 @@ tor_tls_client_is_using_v2_ciphers(const SSL *ssl, const char *address)
/* If we reached this point, we just got a client hello. See if there is
* a cipher list. */
if
(
!
(
session
=
SSL_get_session
((
SSL
*
)
ssl
)))
{
log_
warn
(
LD_NET
,
"No session on TLS?"
);
log_
info
(
LD_NET
,
"No session on TLS?"
);
return
0
;
}
if
(
!
session
->
ciphers
)
{
log_
warn
(
LD_NET
,
"No ciphers on session"
);
log_
info
(
LD_NET
,
"No ciphers on session"
);
return
0
;
}
/* Now we need to see if there are any ciphers whose presence means we're
...
...
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