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.
|
- #ifndef _MRP_CONTROL_SOCKET_H_
- #define _MRP_CONTROL_SOCKET_H_
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <string.h>
- #include <unistd.h> // needed for sysconf(int name);
- #include <errno.h>
- #include <signal.h>
- #include <time.h>
- #include <malloc.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <sys/errno.h>
-
- #include <arpa/inet.h>
-
- #include "global_definitions.h"
- #include "mrpClient_send_msg.h"
-
- int mrpClient_get_Control_socket( );
- int mrpClient_init_Control_socket( FILE* filepointer );
-
-
- #ifdef __cplusplus
- }
- #endif
- #endif /* _MRP_CONTROL_SOCKET_H_ */
|