fix dumb bud
This commit is contained in:
parent
b29258a2e9
commit
5612d1adca
1 changed files with 13 additions and 12 deletions
|
@ -1,3 +1,4 @@
|
|||
#include "../../libs/protocol/protocol.h"
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
|
@ -5,7 +6,6 @@
|
|||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include "../../libs/protocol/protocol.h"
|
||||
|
||||
int main() {
|
||||
// Change the root of the process so it doesn't have access to anything else.
|
||||
|
@ -14,6 +14,7 @@ int main() {
|
|||
if (chroot("/opt/djumbai/") != 0) {
|
||||
perror("chroot /opt/djumbai");
|
||||
return 1;
|
||||
}
|
||||
const char *message_queue_path = "fifos/message_queue";
|
||||
|
||||
if (access(message_queue_path, F_OK) != -1) {
|
||||
|
@ -59,9 +60,9 @@ int main() {
|
|||
}
|
||||
|
||||
unsigned char buffer[MESSAGE_SIZE];
|
||||
while(1){
|
||||
read(message_queue_fd,buffer,MESSAGE_SIZE);
|
||||
write(send_fifo_fd,buffer,MESSAGE_SIZE);
|
||||
while (1) {
|
||||
read(message_queue_fd, buffer, MESSAGE_SIZE);
|
||||
write(send_fifo_fd, buffer, MESSAGE_SIZE);
|
||||
memset(buffer, 0, MESSAGE_SIZE);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue