2006-12-13 19:12:17 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2006, Haiku Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _SYS_UN_H
|
|
|
|
#define _SYS_UN_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct sockaddr_un {
|
|
|
|
uint8_t sun_len;
|
|
|
|
uint8_t sun_family;
|
2008-04-25 02:30:54 +04:00
|
|
|
char sun_path[126];
|
2006-12-13 19:12:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _SYS_UN_H */
|