1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-27 12:41:00 +01:00

ssh-ng: Don't forward options to the daemon.

This can be iterated on and currently leaves out settings we know we
want to forward, but it fixes #1713 and fixes #1935 and isn't
fundamentally broken like the status quo. Future changes are suggested
in a comment.
This commit is contained in:
Shea Levy 2018-03-05 07:42:15 -05:00
parent e9a5ce9b07
commit 088ef81759
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
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