wlroots/xwayland/sockets.h
Simon Ser 4c7c9095d9 xwayland: drop support for abstract sockets
Mutter has done the same [1] a while back. This simplifies the
code and removes support for this legacy feature.

[1]: https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1424
2024-04-25 11:55:52 +02:00

10 lines
204 B
C

#ifndef XWAYLAND_SOCKETS_H
#define XWAYLAND_SOCKETS_H
#include <stdbool.h>
bool set_cloexec(int fd, bool cloexec);
void unlink_display_sockets(int display);
int open_display_sockets(int *sock);
#endif