mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-07-03 10:18:42 +00:00
66a8100737
And some other refinements https://github.com/XTLS/Xray-core/pull/6198#issuecomment-4567438813 Example: https://github.com/XTLS/Xray-core/pull/6198#issue-4522226670
17 lines
490 B
Protocol Buffer
17 lines
490 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.transport.internet.finalmask.salamander;
|
|
option csharp_namespace = "Xray.Transport.Internet.Finalmask.Salamander";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/finalmask/salamander";
|
|
option java_package = "com.xray.transport.internet.finalmask.salamander";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
string password = 1;
|
|
}
|
|
|
|
message GeckoConfig {
|
|
string password = 1;
|
|
int32 MinPacketSize = 2;
|
|
int32 MaxPacketSize = 3;
|
|
} |