31 lines
607 B
Protocol Buffer
31 lines
607 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_multiple_files = false;
|
|
option java_package = "com.yuandian.dataflow.proto.msgtype";
|
|
option go_package = "../grpc-gen;grpcgen";
|
|
|
|
|
|
package dataflow;
|
|
|
|
message BacktrackingFlow {
|
|
|
|
int32 table_id = 1; //编号20
|
|
int64 mac_src = 2;
|
|
int64 mac_dst = 3;
|
|
int64 ip_src = 4;
|
|
int64 ip_dst = 5;
|
|
int32 port_src = 6;
|
|
int32 port_dst = 7;
|
|
int32 l3_proto = 8;
|
|
int32 l4_proto = 9;
|
|
int32 tos = 10;
|
|
int32 vlan_id = 11;
|
|
uint64 bytes = 12;
|
|
uint64 packets = 13;
|
|
uint64 tcp_sp = 14;
|
|
uint64 tcp_scpn = 15;
|
|
uint64 tcp_srp = 16;
|
|
uint32 app_id = 17;
|
|
uint32 app_group_id = 18;
|
|
int32 mpls_label = 19;
|
|
} |