callResolveAddress method

Future<List<DBusValue>> callResolveAddress(
  1. int interface,
  2. int protocol,
  3. String address,
  4. int flags, {
  5. bool noAutoStart = false,
  6. bool allowInteractiveAuthorization = false,
})

Invokes org.freedesktop.Avahi.Server.ResolveAddress()

Implementation

Future<List<DBusValue>> callResolveAddress(
    int interface, int protocol, String address, int flags,
    {bool noAutoStart = false,
    bool allowInteractiveAuthorization = false}) async {
  var result = await callMethod(
      'org.freedesktop.Avahi.Server',
      'ResolveAddress',
      [
        DBusInt32(interface),
        DBusInt32(protocol),
        DBusString(address),
        DBusUint32(flags)
      ],
      replySignature: DBusSignature('iiissu'),
      noAutoStart: noAutoStart,
      allowInteractiveAuthorization: allowInteractiveAuthorization);
  return result.returnValues;
}