1998-03-12 00:11:04 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2005-03-24 02:26:33 +03:00
2005-04-06 07:08:25 +04:00
Copyright ( C ) Andrew Tridgell 1992 - 1997
Copyright ( C ) Luke Kenneth Casson Leighton 1996 - 1997
Copyright ( C ) Paul Ashton 1997
Copyright ( C ) Gerald ( Jerry ) Carter 2005
1998-03-12 00:11:04 +03:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1998-03-12 00:11:04 +03:00
( at your option ) any later version .
This program 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 General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1998-03-12 00:11:04 +03:00
*/
# ifndef _RPC_MISC_H /* _RPC_MISC_H */
# define _RPC_MISC_H
2005-04-06 07:08:25 +04:00
/**********************************************************************
* RPC policy handle used pretty much everywhere
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-03-12 00:11:04 +03:00
2006-09-12 02:02:34 +04:00
# define OUR_HANDLE(hnd) (((hnd)==NULL) ? "NULL" :\
2012-03-24 23:17:08 +04:00
( IVAL ( ( hnd ) - > uuid . node , 2 ) = = ( uint32 ) getpid ( ) ? " OURS " : \
2006-09-12 02:02:34 +04:00
" OTHER " ) ) , ( ( unsigned int ) IVAL ( ( hnd ) - > uuid . node , 2 ) ) , \
2012-03-24 23:17:08 +04:00
( ( unsigned int ) getpid ( ) )
2005-04-06 07:08:25 +04:00
1998-03-12 00:11:04 +03:00
# endif /* _RPC_MISC_H */