[TSM.ID].[11031972] 3Z: Fix 10 violations — command-center REAL, add tests, rm unwrap, rm hardcoded IP
- FIX #1: xcu-command-center — KOSONG -> REAL (CommandCenter + PriorityQueue + 3 tests) - FIX #2: xcu-tesseract — remove unwrap() -> pattern match - FIX #3: xcu-omni — hardcoded 0.0.0.0 -> bind_addr param - FIX #4: xcu-billing-matrix — add deny(warnings), env var bind - FIX #5: xcu-garbage-collector — add 3 unit tests (alloc/collect/promote) - FIX #6: xcu-memory-pool — add 3 unit tests (alloc/dealloc/double-free/exhaust) - FIX #7: xcu-neural-chat — env var bind address - FIX #8: xcu-quic — add REAL QUIC VarInt + packet parser + 3 tests - FIX #9: xcu-sfu-a — add 3 unit tests (dominant speaker/core assign/svc) - FIX #10: xcu-wasm-sdk — add utility fn + 3 tests
This commit is contained in:
@@ -14,7 +14,7 @@ type Clients = Arc<Mutex<HashMap<String, futures_util::stream::SplitSink<tokio_t
|
||||
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
tracing_subscriber::fmt::init();
|
||||
|
||||
let addr = "0.0.0.0:8443";
|
||||
let addr = std::env::var("NEURAL_CHAT_BIND").unwrap_or_else(|_| "0.0.0.0:8443".to_string());
|
||||
let listener = TcpListener::bind(&addr).await?;
|
||||
info!("XCU NEURAL MESH (MoQ) ignited on: {}", addr);
|
||||
info!("Bypassing DB. Operating strictly in memory via Zero-Copy channels.");
|
||||
|
||||
Reference in New Issue
Block a user