Ipc.h 305 B

12345678910111213141516171819
  1. //
  2. // Created by miti on 21/07/19.
  3. //
  4. #ifndef DECRYPTORAPP_IPC_H
  5. #define DECRYPTORAPP_IPC_H
  6. #include <sys/socket.h>
  7. #include <netinet/in.h>
  8. #include <stdlib.h>
  9. #include <errno.h>
  10. #include <stdio.h>
  11. namespace Ipc {
  12. int set_up_socket(int port, sockaddr_in *address);
  13. };
  14. #endif //DECRYPTORAPP_IPC_H