| 12345678910111213141516171819 |
- //
- // Created by miti on 21/07/19.
- //
- #ifndef DECRYPTORAPP_IPC_H
- #define DECRYPTORAPP_IPC_H
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <stdio.h>
- namespace Ipc {
- int set_up_socket(int port, sockaddr_in *address);
- };
- #endif //DECRYPTORAPP_IPC_H
|