• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2021 SUSE LLC <rpalethorpe@suse.com>
4  */
5 
6 #ifndef LAPI_VM_SOCKETS_H__
7 #define LAPI_VM_SOCKETS_H__
8 
9 #include <sys/socket.h>
10 
11 #if HAVE_LINUX_VM_SOCKETS_H
12 #  include <linux/vm_sockets.h>
13 #endif
14 
15 #ifndef VMADDR_CID_LOCAL
16 #  define VMADDR_CID_LOCAL 1
17 #endif
18 
19 #endif /* LAPI_VM_SOCKETS_H__ */
20