mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 09:49:36 +01:00
14 lines
232 B
C++
14 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);
|
|
|
|
}
|