Secure gateway:

This is designed for use by proxies in front of rippled. Configured IPs
can forward identifying user data in HTTP headers, including
user name and origin IP. If the user name exists, then resource limits
are lifted for that session. However, administrative commands are still
reserved only for administrative sessions.
This commit is contained in:
Mark Travis
2015-11-24 17:17:56 -08:00
committed by Nik Bougalis
parent 810175ae95
commit 496fea5995
47 changed files with 538 additions and 219 deletions

View File

@@ -73,9 +73,9 @@ public:
return logic_.newOutboundEndpoint (address);
}
Consumer newAdminEndpoint (std::string const& name) override
Consumer newUnlimitedEndpoint (std::string const& name) override
{
return logic_.newAdminEndpoint (name);
return logic_.newUnlimitedEndpoint (name);
}
Gossip exportConsumers () override