This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include"MyService.proxy.h"
#include"ipc/IpcPipeChannel.h"
#include"proxy/ProxyMarshaller.h"
#include<sys/stat.h>
#include<iostream>
intmain(){
// Создание FIFO — часть пользовательского IPC‑кода.
mkfifo("/tmp/fifo_to_server",0666);
mkfifo("/tmp/fifo_to_client",0666);
// IPC‑уровень: канал поверх pipe.
// Клиент пишет в fifo, который читает сервер (fifo_to_server),
// и читает из fifo, в который пишет сервер (fifo_to_client).