Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Benjamin J. Thompson
Tor
Commits
75922ff4
Commit
75922ff4
authored
17 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
r16663@catbus: nickm | 2007-11-13 21:51:28 -0500
Back out parts of r12376: replace file locations in scripts. svn:r12490
parent
6739ef40
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+1
-1
1 addition, 1 deletion
ChangeLog
configure.in
+5
-0
5 additions, 0 deletions
configure.in
src/or/connection_or.c
+3
-1
3 additions, 1 deletion
src/or/connection_or.c
with
9 additions
and
2 deletions
ChangeLog
+
1
−
1
View file @
75922ff4
Changes in version 0.2.0.12-alpha - 2007-11-??
o Compile fixes:
- Make it build on OpenBSD again. Patch from tup.
- Substitute BINDIR and LOCALSTATEDIR in scripts. Fixes packaging.
Changes in version 0.2.0.11-alpha - 2007-11-12
o Security fixes:
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
5
−
0
View file @
75922ff4
...
...
@@ -620,6 +620,11 @@ AC_SUBST(CONFDIR)
AH_TEMPLATE([CONFDIR],[tor's configuration directory])
AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
BINDIR=`eval echo $bindir`
AC_SUBST(BINDIR)
LOCALSTATEDIR=`eval echo $localstatedir`
AC_SUBST(LOCALSTATEDIR)
# Set CFLAGS _after_ all the above checks, since our warnings are stricter
# than autoconf's macros like.
if test $ac_cv_c_compiler_gnu = yes; then
...
...
This diff is collapsed.
Click to expand it.
src/or/connection_or.c
+
3
−
1
View file @
75922ff4
...
...
@@ -456,6 +456,9 @@ connection_or_get_by_identity_digest(const char *digest)
continue
;
/* avoid non-open conns if we can */
newer
=
best
->
_base
.
timestamp_created
<
conn
->
_base
.
timestamp_created
;
if
(
best
->
is_canonical
&&
!
conn
->
is_canonical
)
continue
;
/* A canonical connection is best. */
if
(
!
best
->
_base
.
or_is_obsolete
&&
conn
->
_base
.
or_is_obsolete
)
continue
;
/* We never prefer obsolete over non-obsolete connections. */
...
...
@@ -763,7 +766,6 @@ connection_tls_finish_handshake(or_connection_t *conn)
directory_set_dirty
();
if
(
tor_tls_used_v1_handshake
(
conn
->
tls
))
{
conn
->
link_proto
=
1
;
if
(
connection_or_check_valid_tls_handshake
(
conn
,
started_here
,
digest_rcvd
)
<
0
)
...
...
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