Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/usr/dummy-include/sys/socket.h
170891 views
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
7
struct 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 */
13
14