1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
* Copyright (C) 1996-2025 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
#ifndef SQUID_COMPAT_OS_NETBSD_H
#define SQUID_COMPAT_OS_NETBSD_H
#if _SQUID_NETBSD_
/****************************************************************************
*--------------------------------------------------------------------------*
* DO *NOT* MAKE ANY CHANGES below here unless you know what you're doing...*
*--------------------------------------------------------------------------*
****************************************************************************/
/* NetBSD does not provide sys_errlist global for strerror */
#define NEED_SYS_ERRLIST 1
/*
* This OS has at least one version that defines these as private
* kernel macros commented as being 'non-standard'.
* We need to use them, much nicer than the OS-provided __u*_*[]
*/
//#define s6_addr8 __u6_addr.__u6_addr8
//#define s6_addr16 __u6_addr.__u6_addr16
#define s6_addr32 __u6_addr.__u6_addr32
#endif /* _SQUID_NETBSD_ */
#endif /* SQUID_COMPAT_OS_NETBSD_H */
|