mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 23:00:24 +08:00
16 lines
287 B
Protocol Buffer
16 lines
287 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
// HTTP Fastcgi定义
|
|
message HTTPFastcgi {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string address = 3;
|
|
bytes paramsJSON = 4;
|
|
bytes readTimeoutJSON = 5;
|
|
bytes connTimeoutJSON = 6;
|
|
int32 poolSize = 7;
|
|
string pathInfoPattern = 8;
|
|
} |