Set default connect address to IP (#539)

This commit is contained in:
Dongjia Zhang 2022-02-16 01:44:58 +09:00 committed by GitHub
parent 479f9471ff
commit 86b4ff9c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,7 +146,7 @@ const _LLMP_BIND_ADDR: &str = "0.0.0.0";
const _LLMP_BIND_ADDR: &str = "127.0.0.1";
/// LLMP Client connects to this address
const _LLMP_CONNECT_ADDR: &str = "localhost";
const _LLMP_CONNECT_ADDR: &str = "127.0.0.1";
/// An env var of this value indicates that the set value was a NULL PTR
const _NULL_ENV_STR: &str = "_NULL";