aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/daemon.hh
blob: fa26ba9c22298056a6ab39f8f16e07f45c594fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);

}