make v1 proxies actually run
This commit is contained in:
parent
0c9db5c5ac
commit
f967c92cbe
1 changed files with 2 additions and 2 deletions
|
|
@ -4,11 +4,11 @@ cfg_if::cfg_if! {
|
||||||
pub mod executables;
|
pub mod executables;
|
||||||
pub mod prudp;
|
pub mod prudp;
|
||||||
pub async fn start_secure(param: ProxyStartupParam) {
|
pub async fn start_secure(param: ProxyStartupParam) {
|
||||||
executables::proxy_secure::start();
|
executables::proxy_secure::start().await;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn start_insecure(param: ProxyStartupParam) {
|
pub async fn start_insecure(param: ProxyStartupParam) {
|
||||||
executables::proxy_insecure::start();
|
executables::proxy_insecure::start().await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue