Enumeration Config_DeviceConfig_RebroadcastMode

Defines the device's behavior for how messages are rebroadcast

Generated

from enum meshtastic.Config.DeviceConfig.RebroadcastMode

Enumeration Members

ALL: 0

Default behavior. Rebroadcast any observed message, if it was on our private channel or from another mesh with the same lora params.

Generated

from enum value: ALL = 0;

ALL_SKIP_DECODING: 1

Same as behavior as ALL but skips packet decoding and simply rebroadcasts them. Only available in Repeater role. Setting this on any other roles will result in ALL behavior.

Generated

from enum value: ALL_SKIP_DECODING = 1;

KNOWN_ONLY: 3

Ignores observed messages from foreign meshes like LOCAL_ONLY, but takes it step further by also ignoring messages from nodenums not in the node's known list (NodeDB)

Generated

from enum value: KNOWN_ONLY = 3;

LOCAL_ONLY: 2

Ignores observed messages from foreign meshes that are open or those which it cannot decrypt. Only rebroadcasts message on the nodes local primary / secondary channels.

Generated

from enum value: LOCAL_ONLY = 2;

Generated using TypeDoc