| 58 | |
| 59 | |
| 60 | class BasicAuthenticatorProcess : public Process<BasicAuthenticatorProcess> |
| 61 | { |
| 62 | public: |
| 63 | BasicAuthenticatorProcess( |
| 64 | const string& realm, |
| 65 | const hashmap<string, string>& credentials); |
| 66 | |
| 67 | virtual Future<AuthenticationResult> authenticate( |
| 68 | const http::Request& request); |
| 69 | |
| 70 | private: |
| 71 | const string realm_; |
| 72 | const hashmap<string, string> credentials_; |
| 73 | }; |
| 74 | |
| 75 | |
| 76 | BasicAuthenticatorProcess::BasicAuthenticatorProcess( |
nothing calls this directly
no outgoing calls
no test coverage detected