1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 15:48:00 +02:00

Move most of the daemon implementation to libstore

This commit is contained in:
Eelco Dolstra 2018-09-24 13:53:44 +02:00
parent 95c727caef
commit 2d37e88319
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
4 changed files with 821 additions and 794 deletions

12
src/libstore/daemon.hh Normal file
View file

@ -0,0 +1,12 @@
#include "serialise.hh"
namespace nix::daemon {
void processConnection(
FdSource & from,
FdSink & to,
bool trusted,
const std::string & userName,
uid_t userId);
}