mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
bcb949b884
Complete the work started with commit
6602a4baf4
('net: Make userland include
of netlink.h more sane').
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
239 B
C
13 lines
239 B
C
#ifndef _LINUX_UN_H
|
|
#define _LINUX_UN_H
|
|
|
|
#include <linux/socket.h>
|
|
|
|
#define UNIX_PATH_MAX 108
|
|
|
|
struct sockaddr_un {
|
|
__kernel_sa_family_t sun_family; /* AF_UNIX */
|
|
char sun_path[UNIX_PATH_MAX]; /* pathname */
|
|
};
|
|
|
|
#endif /* _LINUX_UN_H */
|