originalDestination property

  1. @TagNumber.new(3)
bool get originalDestination

Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.

Implementation

@$pb.TagNumber(3)
$core.bool get originalDestination => $_getBF(1);
  1. @TagNumber.new(3)
set originalDestination (bool v)

Implementation

@$pb.TagNumber(3)
set originalDestination($core.bool v) {
  $_setBool(1, v);
}