OnvifProxyProbeCommand constructor

OnvifProxyProbeCommand()

Implementation

OnvifProxyProbeCommand() {
  argParser
    ..addOption(
      'port',
      abbr: 'p',
      valueHelp: 'number',
      defaultsTo: '8080',
      help: 'The HTTP port used to connect to this server.',
    )
    ..addOption(
      'bind-ip',
      valueHelp: 'IP Address',
      defaultsTo: _defaultIp,
      help: 'The IP address the server will listen on.',
    );
}