Goby3 3.2.3
2025.05.13
Loading...
Searching...
No Matches
manipulator.proto
Go to the documentation of this file.
1syntax = "proto2";
2package goby.acomms.protobuf;
3
4enum Manipulator
5{
6 option allow_alias = true;
7
8 NO_MANIP = 1; // blank "empty" manipulator
9
10 // (QueueManager)
11
12 NO_QUEUE = 4;
13 NO_DEQUEUE = 11;
14 LOOPBACK = 5;
15 ON_DEMAND = 6;
16 LOOPBACK_AS_SENT = 9;
17 PROMISCUOUS = 10;
18
19 // for backwards compatibility with v1
20 // NO_ENCODE is the same as NO_QUEUE
21 // NO_DECODE is the same as NO_DEQUEUE
22 NO_ENCODE = 4;
23 NO_DECODE = 11;
24}