mosdns/plugin/executable/cache/dump.proto
dengxiongjian cd761e8145
Some checks are pending
Test mosdns / build (push) Waiting to run
新增Mikrotik API 插入解析ip
2025-07-31 11:28:55 +08:00

18 lines
303 B
Protocol Buffer

syntax = "proto3";
package cache;
option go_package = "plugin/executable/cache";
message CachedEntry {
bytes key = 1;
bytes msg = 2;
int64 cache_expiration_time = 3;
int64 msg_expiration_time = 4;
int64 msg_stored_time = 5;
}
message CacheDumpBlock {
repeated CachedEntry entries = 1;
}