diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1994-11-28 11:59:19 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1994-11-28 11:59:19 +0000 |
commit | 1513ff9b7899ab588401c89db0e99903dbf5f886 (patch) | |
tree | f69cc81a940a502ea23d664c3ffb2d215a479667 /include/linux/un.h |
Import of Linus's Linux 1.1.68
Diffstat (limited to 'include/linux/un.h')
-rw-r--r-- | include/linux/un.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/un.h b/include/linux/un.h new file mode 100644 index 000000000..e11ad75fe --- /dev/null +++ b/include/linux/un.h @@ -0,0 +1,11 @@ +#ifndef _LINUX_UN_H +#define _LINUX_UN_H + +#define UNIX_PATH_MAX 108 + +struct sockaddr_un { + unsigned short sun_family; /* AF_UNIX */ + char sun_path[UNIX_PATH_MAX]; /* pathname */ +}; + +#endif /* _LINUX_UN_H */ |