mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
c1d5cf6f34
This also renames clientVersion and daemonVersion to the more correct protoVersion (since it's the version agreed to by both sides).
18 lines
312 B
C++
18 lines
312 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "serialise.hh"
|
|
#include "store-api.hh"
|
|
|
|
namespace nix::daemon {
|
|
|
|
enum RecursiveFlag : bool { NotRecursive = false, Recursive = true };
|
|
|
|
void processConnection(
|
|
ref<Store> store,
|
|
FdSource && from,
|
|
FdSink && to,
|
|
TrustedFlag trusted,
|
|
RecursiveFlag recursive);
|
|
|
|
}
|