mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-25 17:45:11 +07:00
13 lines
191 B
C
13 lines
191 B
C
|
#ifndef _LINUX_QRTR_H
|
||
|
#define _LINUX_QRTR_H
|
||
|
|
||
|
#include <linux/socket.h>
|
||
|
|
||
|
struct sockaddr_qrtr {
|
||
|
__kernel_sa_family_t sq_family;
|
||
|
__u32 sq_node;
|
||
|
__u32 sq_port;
|
||
|
};
|
||
|
|
||
|
#endif /* _LINUX_QRTR_H */
|