config.proto 441 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package v2ray.core.transport.internet.ws;
  3. option go_package = "ws";
  4. option java_package = "com.v2ray.core.transport.internet.ws";
  5. option java_outer_classname = "ConfigProto";
  6. message ConnectionReuse {
  7. bool enable = 1;
  8. }
  9. message Config {
  10. // Whether or not to reuse WebSocket connections.
  11. ConnectionReuse connection_reuse = 1;
  12. // URL path to the WebSocket service. Empty value means root(/).
  13. string path = 2;
  14. }