start implementing sentry propperly
All checks were successful
Build and Test / fast-racing-neo (push) Successful in 16m31s
Build and Test / splatoon (push) Successful in 17m7s
Build and Test / puyopuyo (push) Successful in 17m7s
Build and Test / mario-tennis (push) Successful in 17m17s
Build and Test / minecraft-wiiu (push) Successful in 17m20s
Build and Test / wii-u-chat (push) Successful in 17m20s
Build and Test / splatoon-testfire (push) Successful in 17m23s
Build and Test / wii-sports-club (push) Successful in 17m25s
Build and Test / super-mario-maker (push) Successful in 21m26s
Build and Test / sonic-transformed (push) Successful in 28m35s
Build and Test / friends (push) Successful in 29m31s

This commit is contained in:
Maple Nebel 2026-07-09 04:17:05 +02:00
commit 7dd502aa7a
21 changed files with 1182 additions and 237 deletions

View file

@ -1,15 +1,16 @@
use proxy::edge_node_dc_callback;
use proxy_common::{ProxyStartupParam, setup_edge_node_connection};
use rnex_core::common::setup;
use rnex_core::common::with_setup;
#[tokio::main]
async fn main() {
setup();
with_setup(async || {
let param = ProxyStartupParam::new(proxy_common::ProxyType::Insecure)
.expect("unable to get startup parameters");
let param = ProxyStartupParam::new(proxy_common::ProxyType::Insecure)
.expect("unable to get startup parameters");
setup_edge_node_connection(&param, edge_node_dc_callback).await;
setup_edge_node_connection(&param, edge_node_dc_callback).await;
proxy::start_insecure(param).await;
proxy::start_insecure(param).await;
})
.await;
}

View file

@ -1,14 +1,15 @@
use proxy::edge_node_dc_callback;
use proxy_common::{ProxyStartupParam, setup_edge_node_connection};
use rnex_core::common::setup;
use rnex_core::common::with_setup;
#[tokio::main]
async fn main() {
setup();
with_setup(async || {
let param = ProxyStartupParam::new(proxy_common::ProxyType::Secure)
.expect("unable to get startup parameters");
let param = ProxyStartupParam::new(proxy_common::ProxyType::Secure)
.expect("unable to get startup parameters");
setup_edge_node_connection(&param, edge_node_dc_callback).await;
proxy::start_secure(param).await;
setup_edge_node_connection(&param, edge_node_dc_callback).await;
proxy::start_secure(param).await;
})
.await;
}