mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
10 lines
152 B
Protocol Buffer
10 lines
152 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package com.v2ray.core.proxy.socks;
|
||
|
option go_package = "socks";
|
||
|
|
||
|
message Account {
|
||
|
string username = 1;
|
||
|
string password = 2;
|
||
|
}
|