Nix  2.93.0-dev
Lix: A modern, delicious implementation of the Nix package manager; unstable internal interfaces
Loading...
Searching...
No Matches
daemon.hh
Go to the documentation of this file.
1#pragma once
3
7
8namespace nix::daemon {
9
10enum RecursiveFlag : bool { NotRecursive = false, Recursive = true };
11
12void processConnection(
13 AsyncIoRoot & aio,
14 ref<Store> store,
15 FdSource & from,
16 FdSink & to,
17 TrustedFlag trusted,
18 RecursiveFlag recursive);
19
20}