hopLimit property

  1. @TagNumber(9)
int get hopLimit

If unset treated as zero (no forwarding, send to direct neighbor nodes only) if 1, allow hopping through one node, etc... For our usecase real world topologies probably have a max of about 3. This field is normally placed into a few of bits in the header.

Implementation

@$pb.TagNumber(9)
$core.int get hopLimit => $_getIZ(8);
  1. @TagNumber(9)
set hopLimit (int value)

Implementation

@$pb.TagNumber(9)
set hopLimit($core.int value) => $_setUnsignedInt32(8, value);