This commit is contained in:
2024-05-12 23:46:41 +01:00
parent d482e0647f
commit 49fb1af798

View File

@@ -16,7 +16,7 @@ int main() {
return 1;
}
const char *send_fifo_path = "fifos/send_fifo";
if (faccessat(AT_FDCWD,send_fifo_path, F_OK,AT_EACCESS) != -1) {
if (faccessat(AT_FDCWD, send_fifo_path, F_OK, AT_EACCESS) != -1) {
// FIFO exists, delete it
if (unlink(send_fifo_path) == -1) {
perror("unlink");
@@ -32,7 +32,7 @@ int main() {
}
int send_fifo_fd;
send_fifo_fd = open(send_fifo_path, O_RDONLY);
send_fifo_fd = open(send_fifo_path, O_RDWR);
if (send_fifo_fd == -1) {
if (errno == ENOENT) {
// FIFO does not exist
@@ -47,7 +47,9 @@ int main() {
while (1) {
// Read message from the send_fifo
unsigned char buffer[MESSAGE_SIZE];
read(send_fifo_fd, buffer, MESSAGE_SIZE);
if (read(send_fifo_fd, buffer, MESSAGE_SIZE) == 0) {
break;
}
// Deserialize the message
message msg;
deserialize_message(buffer, MESSAGE_SIZE, &msg);