mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Remove the use of beast::String from rippled (RIPD-443)
This commit is contained in:
committed by
Vinnie Falco
parent
4241dbb600
commit
c0b69e8ef7
@@ -37,7 +37,9 @@ public:
|
||||
getConfig ().RPC_SSL_CERT,
|
||||
getConfig ().RPC_SSL_CHAIN))
|
||||
{
|
||||
WriteLog (lsINFO, RPCDoor) << "RPC port: " << getConfig ().getRpcAddress().toRawUTF8() << " allow remote: " << getConfig ().RPC_ALLOW_REMOTE;
|
||||
WriteLog (lsINFO, RPCDoor) <<
|
||||
"RPC port: " << getConfig ().getRpcAddress() <<
|
||||
" allow remote: " << getConfig ().RPC_ALLOW_REMOTE;
|
||||
|
||||
startListening ();
|
||||
}
|
||||
@@ -47,7 +49,7 @@ public:
|
||||
~RPCDoorImp ()
|
||||
{
|
||||
WriteLog (lsINFO, RPCDoor) <<
|
||||
"RPC port: " << getConfig ().getRpcAddress().toRawUTF8() <<
|
||||
"RPC port: " << getConfig ().getRpcAddress() <<
|
||||
" allow remote: " << getConfig ().RPC_ALLOW_REMOTE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user