Merge pull request #1948 from shlevy/no-forward

ssh-ng: Don't forward options to the daemon.
This commit is contained in:
Eelco Dolstra 2018-03-05 18:23:00 +01:00 committed by GitHub
commit 70dbac7491
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -122,11 +122,12 @@ protected:
ref<Pool<Connection>> connections;
virtual void setOptions(Connection & conn);
private:
std::atomic_bool failed{false};
void setOptions(Connection & conn);
};
class UDSRemoteStore : public LocalFSStore, public RemoteStore

View file

@ -51,6 +51,16 @@ private:
std::string host;
SSHMaster master;
void setOptions(RemoteStore::Connection & conn) override
{
/* TODO Add a way to explicitly ask for some options to be
forwarded. One option: A way to query the daemon for its
settings, and then a series of params to SSHStore like
forward-cores or forward-overridden-cores that only
override the requested settings.
*/
};
};