Dummy_CAN_DuT
Dummy_CANFD_Socket.h
Go to the documentation of this file.
1 /*******************************************************************************
2  \project INFM_HIL_Interface
3  \file Dummy_CANFD_Socket.h
4  \brief Provides functions for the setup of an raw CAN/CANFD socket.
5  \author Matthias Bank
6  \version 1.0.0
7  \date 24.10.2021
8  ******************************************************************************/
10 #ifndef DUMMY_CANFD_SOCKET_H
11 #define DUMMY_CANFD_SOCKET_H
12 
13 
14 /*******************************************************************************
15  * INCLUDES
16  ******************************************************************************/
17 #include <linux/can.h>
18 
19 
20 /*******************************************************************************
21  * FUNCTION DECLARATIONS
22  ******************************************************************************/
23 
31 extern int setupSocket(int *socketFD, struct sockaddr_can *addr);
32 
33 
34 #endif //DUMMY_CANFD_SOCKET_H
35 
36 
37 /*******************************************************************************
38  * END OF FILE
39  ******************************************************************************/
int setupSocket(int *socketFD, struct sockaddr_can *addr)
Definition: Dummy_CANFD_Socket.c:32