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
52311e1b
Commit
52311e1b
authored
22 years ago
by
Bruce Montrose
Browse files
Options
Downloads
Patches
Plain Diff
corrected some string literals
svn:r47
parent
f6e2ed23
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/or/config.c
+6
-3
6 additions, 3 deletions
src/or/config.c
with
6 additions
and
3 deletions
src/or/config.c
+
6
−
3
View file @
52311e1b
...
...
@@ -8,6 +8,9 @@
/*
* Changes :
* $Log$
* Revision 1.10 2002/07/15 16:42:27 montrose
* corrected some string literals
*
* Revision 1.9 2002/07/11 19:03:44 montrose
* finishing touches. think its ready for integration now.
*
...
...
@@ -111,9 +114,9 @@ RETURN VALUE: 0 on success, non-zero on error
{
"ORPort"
,
'p'
,
POPT_ARG_INT
,
&
options
->
ORPort
,
0
,
"onion router port"
,
"<port>"
},
{
"PrivateKeyFile"
,
'k'
,
POPT_ARG_STRING
,
&
options
->
PrivateKeyFile
,
0
,
"maximum number of incoming connections"
,
"<
max
>"
},
0
,
"maximum number of incoming connections"
,
"<
file
>"
},
{
"RouterFile"
,
'r'
,
POPT_ARG_STRING
,
&
options
->
RouterFile
,
0
,
"local port on which the onion proxy is running"
,
"<
port
>"
},
0
,
"local port on which the onion proxy is running"
,
"<
file
>"
},
{
"TrafficShaping"
,
't'
,
POPT_ARG_INT
,
&
options
->
TrafficShaping
,
0
,
"which traffic shaping policy to use"
,
"<policy>"
},
{
"GlobalRole"
,
'g'
,
POPT_ARG_INT
,
&
options
->
GlobalRole
,
...
...
@@ -241,7 +244,7 @@ RETURN VALUE: 0 on success, non-zero on error
if
(
options
->
CoinWeight
<
0
.
0
||
options
->
CoinWeight
>=
1
.
0
)
{
log
(
LOG_ERR
,
"CoinWeight option must a value from 0.0 upto 1.0, but not including 1.0."
);
log
(
LOG_ERR
,
"CoinWeight option must
be
a value from 0.0 upto 1.0, but not including 1.0."
);
code
=
-
1
;
}
...
...
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