-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
147 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Copyright 2020 Anapaya Systems | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package showpaths | ||
|
||
import ( | ||
"net" | ||
|
||
"github.com/scionproto/scion/go/lib/sciond" | ||
) | ||
|
||
// DefaultMaxPaths is the maximum number of paths that are displayed by default. | ||
const DefaultMaxPaths = 10 | ||
|
||
// Config configures the showpath run. | ||
type Config struct { | ||
// Local configures the local IP address to use. If this option is not provided, | ||
// a local IP that can reach SCION hosts is selected with the help of the kernel. | ||
Local net.IP | ||
// SCIOND configures a specific SCION Deamon address. | ||
SCIOND string | ||
// MaxPaths configures the maximum number of displayed paths. If this option is | ||
// not provided, the DefaultMaxPaths is used. | ||
MaxPaths int | ||
// ShowExpiration configures whether the expiration is displayed. | ||
ShowExpiration bool | ||
// Refresh configures whether sciond is queried with the refresh flag. | ||
Refresh bool | ||
// Probe configures whether the path status is probed and displayed. | ||
Probe bool | ||
// JSON configures whether the output is written as json. | ||
JSON bool | ||
} | ||
|
||
// InitDefaults initializes the default values. | ||
func (cfg *Config) InitDefaults() { | ||
if cfg.SCIOND == "" { | ||
cfg.SCIOND = sciond.DefaultSCIONDAddress | ||
} | ||
if cfg.MaxPaths == 0 { | ||
cfg.MaxPaths = DefaultMaxPaths | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters