Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
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
The Tor Project
Core
Arti
Commits
1d4b448e
Commit
1d4b448e
authored
3 years ago
by
Neel Chauhan
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused 'address' field from DirSource struct
parent
fbf72fd5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!149
Remove unused 'address' field from DirSource struct
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
crates/tor-netdoc/src/doc/netstatus.rs
+0
-5
0 additions, 5 deletions
crates/tor-netdoc/src/doc/netstatus.rs
crates/tor-netdoc/src/doc/netstatus/build.rs
+0
-6
0 additions, 6 deletions
crates/tor-netdoc/src/doc/netstatus/build.rs
with
0 additions
and
11 deletions
crates/tor-netdoc/src/doc/netstatus.rs
+
0
−
5
View file @
1d4b448e
...
...
@@ -333,9 +333,6 @@ struct DirSource {
/// This is the same key as the one that signs the authority's
/// certificates.
identity
:
RsaIdentity
,
/// Address of the authority in string form.
// XXXX why do we have this _and_ IP?
address
:
String
,
/// IP address for the authority
ip
:
net
::
IpAddr
,
/// HTTP directory port for this authority
...
...
@@ -935,7 +932,6 @@ impl DirSource {
}
let
nickname
=
item
.required_arg
(
0
)
?
.to_string
();
let
identity
=
item
.parse_arg
::
<
Fingerprint
>
(
1
)
?
.into
();
let
address
=
item
.required_arg
(
2
)
?
.to_string
();
let
ip
=
item
.parse_arg
(
3
)
?
;
let
dir_port
=
item
.parse_arg
(
4
)
?
;
let
or_port
=
item
.parse_arg
(
5
)
?
;
...
...
@@ -943,7 +939,6 @@ impl DirSource {
Ok
(
DirSource
{
nickname
,
identity
,
address
,
ip
,
dir_port
,
or_port
,
...
...
This diff is collapsed.
Click to expand it.
crates/tor-netdoc/src/doc/netstatus/build.rs
+
0
−
6
View file @
1d4b448e
...
...
@@ -350,11 +350,6 @@ impl VoterInfoBuilder {
let
identity
=
self
.identity
.ok_or
(
Error
::
CannotBuild
(
"Missing identity"
))
?
;
let
address
=
self
.address
.as_ref
()
.ok_or
(
Error
::
CannotBuild
(
"Missing address"
))
?
.clone
();
let
ip
=
self
.ip
.ok_or
(
Error
::
CannotBuild
(
"Missing IP"
))
?
;
let
contact
=
self
.contact
...
...
@@ -367,7 +362,6 @@ impl VoterInfoBuilder {
let
dir_source
=
DirSource
{
nickname
,
identity
,
address
,
ip
,
dir_port
:
self
.dir_port
,
or_port
:
self
.or_port
,
...
...
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