grpc: updated Interface proto fields to be more consistent with code, ip4mask to ip4_mask, ip6mask to ip6_mask, netid to net_id, flowid to flow_id

This commit is contained in:
Blake Harnden 2020-06-16 22:05:36 -07:00
parent 351b99aae0
commit a1734c3bc0
7 changed files with 40 additions and 35 deletions

View file

@ -732,11 +732,11 @@ message Interface {
string name = 2;
string mac = 3;
string ip4 = 4;
int32 ip4mask = 5;
int32 ip4_mask = 5;
string ip6 = 6;
int32 ip6mask = 7;
int32 netid = 8;
int32 flowid = 9;
int32 ip6_mask = 7;
int32 net_id = 8;
int32 flow_id = 9;
int32 mtu = 10;
}