 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
      View Source
      
  
    const AllowCommand = "allow-access"
    
      View Source
      
  
    const DenyCommand = "deny-access" //deprecated
    
      View Source
      
  
    const ListCommand = "list-access"
    
      View Source
      
  
    const MaxPort = 65535
    
      View Source
      
  
    const MinPort = 1
    
      View Source
      
  
const RemoveCommand = "remove-access"
    Variables ¶
      View Source
      
  
    var AllowUsageRegex = fmt.Sprintf(`\A%s\s+\S+\s+\S+\s+(--|-)\w+(\s+|=)\w+\s+(--|-)\w+(\s+|=)\w+\z`, AllowCommand)
    
      View Source
      
  
    var DenyUsageRegex = fmt.Sprintf(`\A%s\s+\S+\s+\S+\s+(--|-)\w+(\s+|=)\w+\s+(--|-)\w+(\s+|=)\w+\z`, DenyCommand)
    
      View Source
      
  
    var ListUsageRegex = fmt.Sprintf(`\A%s\s*(--app(\s+|=)\S+\z|\z)`, ListCommand)
    
      View Source
      
  
var RemoveUsageRegex = fmt.Sprintf(`\A%s\s+\S+\s+\S+\s+(--|-)\w+(\s+|=)\w+\s+(--|-)\w+(\s+|=)\w+\z`, RemoveCommand)
    Functions ¶
This section is empty.
Types ¶
type CommandRunner ¶
type CommandRunner struct {
	Styler        *styles.StyleGroup
	Logger        *log.Logger
	PolicyClient  policy_client.ExternalPolicyClient
	CliConnection plugin.CliConnection
	Args          []string
}
    func (*CommandRunner) Allow ¶
func (r *CommandRunner) Allow() (string, error)
func (*CommandRunner) List ¶
func (r *CommandRunner) List() (string, error)
func (*CommandRunner) Remove ¶
func (r *CommandRunner) Remove() (string, error)
type Plugin ¶
type Plugin struct {
	Styler       *styles.StyleGroup
	Logger       *log.Logger
	PolicyClient policy_client.ExternalPolicyClient
}
    func (*Plugin) GetMetadata ¶
func (p *Plugin) GetMetadata() plugin.PluginMetadata
func (*Plugin) RunWithErrors ¶
 Click to show internal directories. 
   Click to hide internal directories.