2009-03-04 04:28:35 +01:00
|
|
|
/****************************************************************************
|
|
|
|
****************************************************************************
|
|
|
|
***
|
|
|
|
*** This header was automatically generated from a Linux kernel header
|
|
|
|
*** of the same name, to make information necessary for userspace to
|
|
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
|
|
*** structures, and macros generated from the original header, and thus,
|
|
|
|
*** contains no copyrightable information.
|
|
|
|
***
|
2012-03-08 06:13:49 +01:00
|
|
|
*** To edit the content of this header, modify the corresponding
|
|
|
|
*** source file (e.g. under external/kernel-headers/original/) then
|
|
|
|
*** run bionic/libc/kernel/tools/update_all.py
|
|
|
|
***
|
|
|
|
*** Any manual change here will be lost the next time this script will
|
|
|
|
*** be run. You've been warned!
|
|
|
|
***
|
2009-03-04 04:28:35 +01:00
|
|
|
****************************************************************************
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _LINUX_SOCKET_H
|
|
|
|
#define _LINUX_SOCKET_H
|
2013-01-30 03:15:55 +01:00
|
|
|
#define _K_SS_MAXSIZE 128
|
2009-03-04 04:28:35 +01:00
|
|
|
#define _K_SS_ALIGNSIZE (__alignof__ (struct sockaddr *))
|
2012-03-08 06:13:49 +01:00
|
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
2012-09-12 04:03:02 +02:00
|
|
|
typedef unsigned short __kernel_sa_family_t;
|
2009-03-04 04:28:35 +01:00
|
|
|
struct __kernel_sockaddr_storage {
|
2012-09-12 04:03:02 +02:00
|
|
|
__kernel_sa_family_t ss_family;
|
2009-03-04 04:28:35 +01:00
|
|
|
char __data[_K_SS_MAXSIZE - sizeof(unsigned short)];
|
2012-03-08 06:13:49 +01:00
|
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
2012-09-12 04:03:02 +02:00
|
|
|
} __attribute__ ((aligned(_K_SS_ALIGNSIZE)));
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif
|