diff options
author | Daiderd Jordan <daiderd@gmail.com> | 2018-08-30T21·28+0200 |
---|---|---|
committer | Daiderd Jordan <daiderd@gmail.com> | 2018-09-02T10·54+0200 |
commit | 070823baa4c3c397c8a5eb0378944187e7f4903c (patch) | |
tree | 5c0260ee081c74d4fb1965063e8445f6a9156640 /src/libstore/legacy-ssh-store.cc | |
parent | c9a08540c3d64d1285928d1ce3d3d416a2547dd9 (diff) |
Store: expose the protocol version used by a store
Diffstat (limited to 'src/libstore/legacy-ssh-store.cc')
-rw-r--r-- | src/libstore/legacy-ssh-store.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstore/legacy-ssh-store.cc b/src/libstore/legacy-ssh-store.cc index 88d2574e86ef..26e1851981db 100644 --- a/src/libstore/legacy-ssh-store.cc +++ b/src/libstore/legacy-ssh-store.cc @@ -303,6 +303,12 @@ struct LegacySSHStore : public Store { auto conn(connections->get()); } + + unsigned int getProtocol() override + { + auto conn(connections->get()); + return conn->remoteVersion; + } }; static RegisterStoreImplementation regStore([]( |