相关字段缺少分号,加上

This commit is contained in:
zzz9527me 2022-06-30 11:41:01 +08:00
parent 5b566d43cb
commit 3ba0ff9872

View File

@ -9,10 +9,10 @@ package dataflow;
message AppFlow { message AppFlow {
int32 table_id = 1; //17 int32 table_id = 1; //17
uint32 src_ip = 2 uint32 src_ip = 2;
uint32 src_port = 3; uint32 src_port = 3;
uint32 dst_ip = 4; uint32 dst_ip = 4;
uint32 dst_port = 5 uint32 dst_port = 5;
uint32 s_tv_sec = 6; uint32 s_tv_sec = 6;
uint32 s_tv_usec = 7; uint32 s_tv_usec = 7;
uint32 l_tv_sec = 8; uint32 l_tv_sec = 8;
@ -32,4 +32,4 @@ message AppFlow {
int32 vlan_id = 22; int32 vlan_id = 22;
int32 mpls_label = 23; int32 mpls_label = 23;
int32 tos = 24; int32 tos = 24;
} }