Home
last modified time | relevance | path

Searched refs:CAN_RAW (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/include/uapi/linux/can/
H A Draw.h51 #define SOL_CAN_RAW (SOL_CAN_BASE + CAN_RAW)
/openbmc/linux/net/can/
H A DKconfig23 config CAN_RAW config
31 To receive/send raw CAN messages, use AF_CAN with protocol CAN_RAW.
H A Draw.c985 .protocol = CAN_RAW,
/openbmc/linux/include/uapi/linux/
H A Dcan.h224 #define CAN_RAW 1 /* RAW sockets */ macro
/openbmc/linux/Documentation/networking/
H A Dcan.rst216 s = socket(PF_CAN, SOCK_RAW, CAN_RAW);
225 - see :ref:`socketcan-concept`). After binding (CAN_RAW) or connecting (CAN_BCM)
264 default. A read(2) system call on a CAN_RAW socket transfers a
301 be used (example for CAN_RAW sockets without error checking):
309 s = socket(PF_CAN, SOCK_RAW, CAN_RAW);
328 Reading CAN frames from a bound CAN_RAW socket (see above) consists
404 bytes of payload (struct can_frame) like the CAN_RAW socket. Therefore e.g.
405 the CAN_RAW socket supports a new socket option CAN_RAW_FD_FRAMES that
452 Using CAN_RAW sockets is extensively comparable to the commonly
463 To use the referenced definitions of the socket options for CAN_RAW
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/socketcan/canutils/
H A D0001-canutils-candump-Add-error-frame-s-handling.patch39 " -p, --protocol=PROTO\t" "CAN protocol (default CAN_RAW = %d)\n"
/openbmc/qemu/net/can/
H A Dcan_socketcan.c205 s = qemu_socket(PF_CAN, SOCK_RAW, CAN_RAW); in can_host_socketcan_connect()