jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
630B

  1. #ifndef _MRP_CONTROL_SOCKET_H_
  2. #define _MRP_CONTROL_SOCKET_H_
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <stdint.h>
  10. #include <string.h>
  11. #include <unistd.h> // needed for sysconf(int name);
  12. #include <errno.h>
  13. #include <signal.h>
  14. #include <time.h>
  15. #include <malloc.h>
  16. #include <sys/stat.h>
  17. #include <sys/types.h>
  18. #include <sys/errno.h>
  19. #include <arpa/inet.h>
  20. #include "global_definitions.h"
  21. #include "mrpClient_send_msg.h"
  22. int mrpClient_get_Control_socket( );
  23. int mrpClient_init_Control_socket( FILE* filepointer );
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* _MRP_CONTROL_SOCKET_H_ */