outbound1 property
Outbound configuration map for the socks protocol used by V2Ray core.
Implementation
@override
Map<String, dynamic> get outbound1 => {
'protocol': 'socks',
'settings': {
'servers': [
{
'address': address,
'level': level,
'method': 'chacha20-poly1305',
'ota': false,
'password': '',
'port': port,
'users': [
{'level': level, 'user': username, 'pass': password}
]
}
]
},
'streamSettings': streamSetting,
'tag': 'proxy',
'mux': {'concurrency': 8, 'enabled': false},
};