make format

pull/38/head^2
Jeff Becker 6 years ago
parent ac1d1169bc
commit c8f870392f
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -569,7 +569,7 @@ namespace llarp
struct llarp_ev_loop
{
byte_t readbuf[EV_READ_BUF_SZ] = {0};
llarp_time_t _now = 0;
llarp_time_t _now = 0;
virtual bool
init() = 0;

@ -103,11 +103,16 @@ struct llarp_router
bool
ShouldCreateDefaultHiddenService();
std::string DefaultRPCBindAddr = "127.0.0.1:1190";
bool enableRPCServer = true;
const std::string DefaultRPCBindAddr = "127.0.0.1:1190";
bool enableRPCServer = true;
std::unique_ptr< llarp::rpc::Server > rpcServer;
std::string rpcBindAddr = DefaultRPCBindAddr;
/// lokid caller
const std::string DefaultLokidRPCAddr = "127.0.0.1:22023";
std::unique_ptr< llarp::rpc::Caller > rpcCaller;
std::string lokidRPCAddr = DefaultLokidRPCAddr;
std::unique_ptr< llarp::ILinkLayer > outboundLink;
std::vector< std::unique_ptr< llarp::ILinkLayer > > inboundLinks;

Loading…
Cancel
Save