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
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
orbea
Tor
Commits
1ecd7c5d
Commit
1ecd7c5d
authored
2 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'tor-gitlab/mr/590'
parents
83474592
95080794
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/man/tor.1.txt
+2
-2
2 additions, 2 deletions
doc/man/tor.1.txt
scripts/maint/checkOptionDocs.pl.in
+8
-1
8 additions, 1 deletion
scripts/maint/checkOptionDocs.pl.in
with
10 additions
and
3 deletions
doc/man/tor.1.txt
+
2
−
2
View file @
1ecd7c5d
...
...
@@ -335,7 +335,7 @@ forward slash (/) in the configuration file and on the command line.
to mess with it. (Default: -1)
[[ClientTransportPlugin]] **ClientTransportPlugin** __transport__ socks4|socks5 __IP__:__PORT__::
**ClientTransportPlugin** __transport__ exec __path-to-binary__ [options]::
[[ClientTransportPlugin-2]]
**ClientTransportPlugin** __transport__ exec __path-to-binary__ [options]::
In its first form, when set along with a corresponding Bridge line, the Tor
client forwards its traffic to a SOCKS-speaking proxy on "IP:PORT".
(IPv4 addresses should written as-is; IPv6 addresses should be wrapped in
...
...
@@ -3112,7 +3112,7 @@ on the public Tor network.
is the same as for exit policies, except that you don't need to say
"accept" or "reject", and ports are not needed.)
[[AuthDirMiddleOnly]] **AuthMiddleOnly** __AddressPattern...__::
[[AuthDirMiddleOnly]] **Auth
Dir
MiddleOnly** __AddressPattern...__::
Authoritative directories only. A set of address patterns for servers that
will be listed as middle-only in any network status document this authority
publishes, if **AuthDirListMiddleOnly** is set. +
...
...
This diff is collapsed.
Click to expand it.
scripts/maint/checkOptionDocs.pl.in
+
8
−
1
View file @
1ecd7c5d
...
...
@@ -41,9 +41,16 @@ loadTorrc("@abs_top_srcdir@/src/config/torrc.sample.in", \%torrcSampleOptions);
my
$considerNextLine
=
0
;
open
(
F
,
"
@abs_top_srcdir
@/doc/man/tor.1.txt
")
or
die
;
while
(
<
F
>
)
{
if
(
m!^(?:\[\[([A-za-z0-9_]+)\]\] *)?\*\*([A-Za-z0-9_]+)\*\*!
)
{
if
(
m!^(?:\[\[([A-za-z0-9_]+)\]\] *)?\*\*([A-Za-z0-9_]+)\*\*!
&&
$considerNextLine
)
{
$manPageOptions
{
$
2
}
=
1
;
print
"
Missing an anchor: $2
\n
"
unless
(
defined
$
1
or
$
2
eq
'
tor
');
$considerNextLine
=
1
;
}
elsif
(
m!^\s*$!
or
m!^\s*\+\s*$!
or
m!^\s*//!
)
{
$considerNextLine
=
1
;
}
else
{
$considerNextLine
=
0
;
}
}
close
F
;
...
...
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