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
0e9663d4
Commit
0e9663d4
authored
13 years ago
by
Robert Ransom
Committed by
Nick Mathewson
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug #5097: remove bogus envvar from managed proxies' environment
parent
db23aec6
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/bug5097
+9
-0
9 additions, 0 deletions
changes/bug5097
src/or/transports.c
+0
-2
0 additions, 2 deletions
src/or/transports.c
with
9 additions
and
2 deletions
changes/bug5097
0 → 100644
+
9
−
0
View file @
0e9663d4
o Minor bugfixes:
- Don't put "TOR_PT_EXTENDED_SERVER_PORT=127.0.0.1:4200" in a
managed pluggable transport server proxy's environment.
Previously, we would put it there, even though Tor doesn't
implement an 'extended server port' yet, and even though Tor
almost certainly isn't listening to that address. Bugfix on
0.2.3.6-alpha.
This diff is collapsed.
Click to expand it.
src/or/transports.c
+
0
−
2
View file @
0e9663d4
...
...
@@ -1087,8 +1087,6 @@ set_managed_proxy_environment(char ***envp, const managed_proxy_t *mp)
router_get_advertised_or_port
(
options
));
tor_asprintf
(
tmp
++
,
"TOR_PT_SERVER_BINDADDR=%s"
,
bindaddr
);
tor_asprintf
(
tmp
++
,
"TOR_PT_SERVER_TRANSPORTS=%s"
,
transports_to_launch
);
/* XXX temp*/
tor_asprintf
(
tmp
++
,
"TOR_PT_EXTENDED_SERVER_PORT=127.0.0.1:4200"
);
}
else
{
tor_asprintf
(
tmp
++
,
"TOR_PT_CLIENT_TRANSPORTS=%s"
,
transports_to_launch
);
}
...
...
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