mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
16 lines
321 B
Protocol Buffer
16 lines
321 B
Protocol Buffer
syntax = "proto3";
|
|
option optimize_for = SPEED;
|
|
|
|
package fair.mq.ofi;
|
|
|
|
message DataAddressAnnouncement {
|
|
uint32 ipv4 = 1; // in_addr_t from <netinet/in.h>
|
|
uint32 port = 2; // in_port_t from <netinet/in.h>
|
|
}
|
|
|
|
message ControlMessage {
|
|
oneof type {
|
|
DataAddressAnnouncement data_address_announcement = 1;
|
|
}
|
|
}
|