We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1ebb96 + b77d1a3 commit 76f806eCopy full SHA for 76f806e
meshtastic/config.proto
@@ -515,6 +515,26 @@ message Config {
515
* rsyslog Server and Port
516
*/
517
string rsyslog_server = 9;
518
+
519
+ /*
520
+ * Flags for enabling/disabling network protocols
521
+ */
522
+ uint32 enabled_protocols = 10;
523
524
525
+ * Available flags auxiliary network protocols
526
527
+ enum ProtocolFlags {
528
529
+ * Do not broadcast packets over any network protocol
530
531
+ NO_BROADCAST = 0x0000;
532
533
534
+ * Enable broadcasting packets via UDP over the local network
535
536
+ UDP_BROADCAST = 0x0001;
537
+ }
538
}
539
540
/*
@@ -1113,4 +1133,4 @@ message Config {
1113
1133
SessionkeyConfig sessionkey = 9;
1114
1134
DeviceUIConfig device_ui = 10;
1115
1135
1116
-}
1136
+}
0 commit comments