aboutsummaryrefslogtreecommitdiffstats
path: root/lib/utils.c
AgeCommit message (Collapse)AuthorFilesLines
2021-07-28lib: initialize epoll_event structuresGeorge Kiagiadakis1-1/+1
caught by valgrind Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2021-07-28lib: avoid static buffers, use alloca() moreGeorge Kiagiadakis1-2/+5
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2021-07-28style: convert code to systemd coding styleGeorge Kiagiadakis1-245/+234
https://systemd.io/CODING_STYLE/ Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2021-07-28wpipc: change epoll thread func type name to be more consistentJulian Bouzas1-2/+2
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2021-07-28wpipc: place sockets in the same runtime directory as pipewireGeorge Kiagiadakis1-0/+42
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2021-07-28lib: add wpipc libraryJulian Bouzas1-0/+269
Simple library that uses sockets for inter-process communication. It provides an API to create server and client objects. Users can add custom handlers in the server, and clients can send requests for those custom handlers. Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>