From bfb76ff2b6c585924336e6d130c3e7f0d33a008a Mon Sep 17 00:00:00 2001 From: Dima Pulkinen Date: Thu, 29 Feb 2024 11:50:08 +0200 Subject: [PATCH] cleanup unused definitions from psp-un header --- src/psp-un.h | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/src/psp-un.h b/src/psp-un.h index 41bde17..467af62 100644 --- a/src/psp-un.h +++ b/src/psp-un.h @@ -29,16 +29,15 @@ * SUCH DAMAGE. */ -#ifndef _SYS_UN_H_ -#define _SYS_UN_H_ +/* + * psp-un.h + * Copyright (c) Dima Pulkinen 2024 + */ -#include -#include +#ifndef _PSP_UN_H_ +#define _PSP_UN_H_ -#ifndef _SA_FAMILY_T_DECLARED -typedef __sa_family_t sa_family_t; -#define _SA_FAMILY_T_DECLARED -#endif +#include /* * Historically, (struct sockaddr) needed to fit inside an mbuf. @@ -57,26 +56,4 @@ struct sockaddr_un { char sun_path[SUNPATHLEN]; /* path name (gag) */ }; -#if __BSD_VISIBLE - -#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_ */ +#endif /* !_PSP_UN_H_ */