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
588B

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