cleanup unused definitions from psp-un header

This commit is contained in:
Dima Pulkinen 2024-02-29 11:50:08 +02:00
parent 675c4d4b2e
commit bfb76ff2b6

View File

@ -29,16 +29,15 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifndef _SYS_UN_H_ /*
#define _SYS_UN_H_ * psp-un.h
* Copyright (c) Dima Pulkinen 2024
*/
#include <sys/cdefs.h> #ifndef _PSP_UN_H_
#include <sys/_types.h> #define _PSP_UN_H_
#ifndef _SA_FAMILY_T_DECLARED #include <sys/socket.h>
typedef __sa_family_t sa_family_t;
#define _SA_FAMILY_T_DECLARED
#endif
/* /*
* Historically, (struct sockaddr) needed to fit inside an mbuf. * Historically, (struct sockaddr) needed to fit inside an mbuf.
@ -57,26 +56,4 @@ struct sockaddr_un {
char sun_path[SUNPATHLEN]; /* path name (gag) */ char sun_path[SUNPATHLEN]; /* path name (gag) */
}; };
#if __BSD_VISIBLE #endif /* !_PSP_UN_H_ */
#define SOL_LOCAL 0 /* Options for local socket */
/* Socket options. */
#define LOCAL_PEERCRED 1 /* retrieve peer credentials */
#define LOCAL_CREDS 2 /* pass credentials to receiver */
#define LOCAL_CREDS_PERSISTENT 3 /* pass credentials to receiver */
/* Start of reserved space for third-party socket options. */
#define LOCAL_VENDOR SO_VENDOR
#ifndef _KERNEL
/* actual length of an initialized sockaddr_un */
#define SUN_LEN(su) \
(sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
#endif /* !_KERNEL */
#endif /* __BSD_VISIBLE */
#endif /* !_SYS_UN_H_ */