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