2008-12-16 11:30:16 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-05-09 15:43:00 +04:00
Winbind daemon for ntdom nss module
Copyright ( C ) Tim Potter 2000
2008-12-16 11:30:16 +03:00
2000-05-09 15:43:00 +04:00
This library is free software ; you can redistribute it and / or
2007-07-10 08:04:46 +04:00
modify it under the terms of the GNU Lesser General Public
2000-05-09 15:43:00 +04:00
License as published by the Free Software Foundation ; either
2007-07-10 06:31:50 +04:00
version 3 of the License , or ( at your option ) any later version .
2008-12-16 11:30:16 +03:00
2000-05-09 15:43:00 +04:00
This library is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Library General Public License for more details .
2008-12-16 11:30:16 +03:00
2007-07-10 08:04:46 +04:00
You should have received a copy of the GNU Lesser General Public License
2007-07-10 06:31:50 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2000-05-09 15:43:00 +04:00
*/
2001-06-07 11:14:17 +04:00
# ifndef _WINBIND_NSS_CONFIG_H
# define _WINBIND_NSS_CONFIG_H
2000-05-09 15:43:00 +04:00
2006-08-23 02:53:08 +04:00
/* shutup the compiler warnings due to krb5.h on 64-bit sles9 */
2006-04-13 16:03:12 +04:00
# ifdef SIZEOF_LONG
# undef SIZEOF_LONG
# endif
2008-01-15 15:52:19 +03:00
/*
* we don ' t need socket wrapper
* nor nss wrapper here and we don ' t
* want to depend on swrap_close ( )
* so we better disable both
*/
# define SOCKET_WRAPPER_NOT_REPLACE
# define NSS_WRAPPER_NOT_REPLACE
2006-08-23 02:53:08 +04:00
2000-05-09 15:43:00 +04:00
/* Include header files from data in config.h file */
2002-09-25 19:47:01 +04:00
# ifndef NO_CONFIG_H
2008-09-16 18:30:14 +04:00
# include "../replace/replace.h"
2002-09-25 19:47:01 +04:00
# endif
2000-05-09 15:43:00 +04:00
2006-09-22 02:24:53 +04:00
# include "system/filesys.h"
2006-09-27 17:52:14 +04:00
# include "system/network.h"
2007-12-12 00:16:35 +03:00
# include "system/passwd.h"
2000-05-09 15:43:00 +04:00
2003-04-02 10:16:15 +04:00
# include "nsswitch/winbind_nss.h"
2001-04-25 09:47:50 +04:00
2000-05-09 15:43:00 +04:00
/* I'm trying really hard not to include anything from smb.h with the
result of some silly looking redeclaration of structures . */
2007-12-07 23:04:40 +03:00
# ifndef FSTRING_LEN
2001-04-13 23:12:06 +04:00
# define FSTRING_LEN 256
2000-05-09 15:43:00 +04:00
typedef char fstring [ FSTRING_LEN ] ;
2011-05-18 03:18:37 +04:00
# ifndef fstrcpy
# define fstrcpy(d,s) \
do { \
const char * _fstrcpy_src = ( const char * ) ( s ) ; \
strlcpy ( ( d ) , _fstrcpy_src ? _fstrcpy_src : " " , sizeof ( fstring ) ) ; \
} while ( 0 )
# endif
2007-12-07 23:04:40 +03:00
# endif
2000-05-09 15:43:00 +04:00
2001-05-08 09:56:10 +04:00
/* Some systems (SCO) treat UNIX domain sockets as FIFOs */
# ifndef S_IFSOCK
# define S_IFSOCK S_IFIFO
# endif
# ifndef S_ISSOCK
# define S_ISSOCK(mode) ((mode & S_IFSOCK) == S_IFSOCK)
# endif
2000-05-09 15:43:00 +04:00
# endif