From e506206971bf490434906b2d46e535dc28607ecd Mon Sep 17 00:00:00 2001 From: techmetx11 Date: Sun, 21 Jul 2024 17:14:08 +0100 Subject: [PATCH] Change default TCP IP to 127.0.0.1 --- src/consts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/consts.rs b/src/consts.rs index 94c08f5..b8f51b9 100644 --- a/src/consts.rs +++ b/src/consts.rs @@ -2,7 +2,7 @@ use lazy_regex::{regex, Lazy}; use regex::Regex; pub static DEFAULT_SOCK_PATH: &str = "/tmp/inv_sig_helper.sock"; -pub static DEFAULT_TCP_URL: &str = "0.0.0.0:12999"; +pub static DEFAULT_TCP_URL: &str = "127.0.0.1:12999"; pub static TEST_YOUTUBE_VIDEO: &str = "https://www.youtube.com/watch?v=jNQXAC9IVRw";