setLocalProxy abstract method

Future<int?> setLocalProxy(
  1. List<LocalProxyConfiguration>? configurations
)

设置本地代理。

v3.54 新增。

configurations:本地代理配置参数。
你可以根据自己的需要选择同时设置 Http 隧道 和 Socks5 两类代理,或者单独设置其中一类代理。如果你同时设置了 Http 隧道 和 Socks5 两类代理,此时,媒体和信令采用 Socks5 代理, Http 请求采用 Http 隧道代理;如果只设置 Http 隧道 或 Socks5 一类代理,媒体、信令和 Http 请求均采用已设置的代理。
调用此接口设置本地代理后,若想清空当前已有的代理设置,可再次调用此接口,选择不设置任何代理即可清空。

注意:

Implementation

Future<int?> setLocalProxy(List<LocalProxyConfiguration>? configurations);