1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| syntax = "proto3";
|
| package protomsg;
|
| message LocalConfig {
| string server_id = 1;
| string server_name = 2;
| int32 server_type = 3;
| string alarm_ip = 4;
| int32 alarm_port = 5;
| string web_pic_ip = 6;
| int32 web_pic_port = 7;
| string es_pic_ip = 8;
| int32 es_pic_port = 9;
| int32 cut_max_duration = 10;
| int32 cut_min_duration = 11;
| string reserved = 12;
| }
|
|