mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-08 16:00:25 +08:00
17 lines
307 B
Protocol Buffer
17 lines
307 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message HTTPFirewallPolicy {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
string mode = 7;
|
|
bool isOn = 3;
|
|
string description = 4;
|
|
bytes inboundJSON = 5;
|
|
bytes outboundJSON = 6;
|
|
int64 serverId = 8;
|
|
bool useLocalFirewall = 9;
|
|
bytes synFloodJSON = 10;
|
|
} |