Nix 2.93.3
Lix: A modern, delicious implementation of the Nix package manager; unstable internal interfaces
Loading...
Searching...
No Matches
unix-domain-socket.hh
Go to the documentation of this file.
1#pragma once
3
6
7#include <unistd.h>
8
9namespace nix {
10
14AutoCloseFD createUnixDomainSocket();
15
19AutoCloseFD createUnixDomainSocket(const Path & path, mode_t mode);
20
24void bind(int fd, const std::string & path);
25
29void connect(int fd, const std::string & path);
30
31}
Definition file-descriptor.hh:51
std::string Path
Definition types.hh:28