mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-14 01:18:04 +00:00
19 lines
233 B
Protocol Buffer
Executable File
19 lines
233 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
package shared;
|
|
|
|
message Header {
|
|
google.protobuf.Timestamp ts = 1;
|
|
}
|
|
|
|
message Heartbeat {
|
|
uint64 count = 1;
|
|
}
|
|
|
|
message Socket {
|
|
string ip = 1;
|
|
int64 port = 2;
|
|
}
|