Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 12 lines 301 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2#ifndef _DUMMY_SYS_SOCKET_H 3#define _DUMMY_SYS_SOCKET_H 4 5#include <linux/socket.h> 6 7struct sockaddr { 8 __kernel_sa_family_t sa_family; /* address family, AF_xxx */ 9 char sa_data[14]; /* 14 bytes of protocol address */ 10}; 11 12#endif /* _DUMMY_SYS_SOCKET_H */