1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
///@file
#include "lix/libutil/async.hh"
#include "lix/libutil/serialise.hh"
#include "lix/libstore/store-api.hh"
namespace nix::daemon {
void processConnection(
AsyncIoRoot & aio,
ref<Store> store,
FdSource & from,
FdSink & to,
TrustedFlag trusted);
}
|