2005-08-02 20:12:31 +00:00
/*
Unix SMB / CIFS implementation .
TDR definitions
Copyright ( C ) Jelmer Vernooij 2005
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-10 02:07:03 +00:00
the Free Software Foundation ; either version 3 of the License , or
2005-08-02 20:12:31 +00: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 02:07:03 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-08-02 20:12:31 +00:00
*/
2006-03-16 21:36:36 +00:00
# ifndef __TDR_H__
# define __TDR_H__
2007-08-30 23:15:12 +00:00
# include <talloc.h>
2008-10-24 00:06:35 +02:00
# include "../lib/util/charset/charset.h"
2006-03-16 21:36:36 +00:00
2005-08-21 13:19:36 +00:00
# define TDR_BIG_ENDIAN 0x01
# define TDR_ALIGN2 0x02
# define TDR_ALIGN4 0x04
# define TDR_ALIGN8 0x08
# define TDR_REMAINING 0x10
2005-08-02 20:12:31 +00:00
struct tdr_pull {
2005-09-02 14:05:28 +00:00
DATA_BLOB data ;
2005-08-02 20:12:31 +00:00
uint32_t offset ;
int flags ;
2007-12-13 22:46:51 +01:00
struct smb_iconv_convenience * iconv_convenience ;
2005-08-02 20:12:31 +00:00
} ;
struct tdr_push {
2005-09-02 14:05:28 +00:00
DATA_BLOB data ;
2005-08-02 20:12:31 +00:00
int flags ;
2007-12-13 22:46:47 +01:00
struct smb_iconv_convenience * iconv_convenience ;
2005-08-02 20:12:31 +00:00
} ;
struct tdr_print {
int level ;
void ( * print ) ( struct tdr_print * , const char * , . . . ) ;
2005-08-21 13:19:36 +00:00
int flags ;
2005-08-02 20:12:31 +00:00
} ;
# define TDR_CHECK(call) do { NTSTATUS _status; \
_status = call ; \
if ( ! NT_STATUS_IS_OK ( _status ) ) \
return _status ; \
} while ( 0 )
2005-09-04 20:17:21 +00:00
# define TDR_ALLOC(ctx, s, n) do { \
( s ) = talloc_array_size ( ctx , sizeof ( * ( s ) ) , n ) ; \
2005-08-02 20:12:31 +00:00
if ( ( n ) & & ! ( s ) ) return NT_STATUS_NO_MEMORY ; \
} while ( 0 )
2005-09-04 13:13:47 +00:00
2005-09-04 17:25:04 +00:00
typedef NTSTATUS ( * tdr_push_fn_t ) ( struct tdr_push * , const void * ) ;
2005-09-04 20:17:21 +00:00
typedef NTSTATUS ( * tdr_pull_fn_t ) ( struct tdr_pull * , TALLOC_CTX * , void * ) ;
2005-12-27 22:51:30 +00:00
2006-03-19 02:23:52 +00:00
# include "lib/tdr/tdr_proto.h"
2006-03-16 21:36:36 +00:00
# endif /* __TDR_H__ */