]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/un.h
Merge branch 'devel' of master.kernel.org:/home/rmk/linux-2.6-mmc
[mirror_ubuntu-zesty-kernel.git] / include / linux / un.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_UN_H
2#define _LINUX_UN_H
3
4#define UNIX_PATH_MAX 108
5
6struct sockaddr_un {
7 sa_family_t sun_family; /* AF_UNIX */
8 char sun_path[UNIX_PATH_MAX]; /* pathname */
9};
10
11#endif /* _LINUX_UN_H */