Merge branch 'master' into feature/websocketnavigation

This merge changes the default websocket port from 8001 to 4862.
This commit is contained in:
Matthew Territo
2019-02-13 12:18:28 -07:00
60 changed files with 863 additions and 206 deletions
@@ -31,7 +31,7 @@ namespace openspace {
class AuthorizationTopic : public Topic {
public:
AuthorizationTopic() = default;
AuthorizationTopic(std::string password);
void handleJson(const nlohmann::json& json) override;
bool isDone() const override;
@@ -39,6 +39,7 @@ public:
private:
bool authorize(const std::string& key);
std::string _password;
bool _isAuthenticated = false;
};