forked from lix-project/lix
15 lines
232 B
C++
15 lines
232 B
C++
#include "serialise.hh"
|
|
#include "store-api.hh"
|
|
|
|
namespace nix::daemon {
|
|
|
|
void processConnection(
|
|
ref<Store> store,
|
|
FdSource & from,
|
|
FdSink & to,
|
|
bool trusted,
|
|
const std::string & userName,
|
|
uid_t userId);
|
|
|
|
}
|