diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-03 06:22:45 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-03 06:22:45 +0000 |
commit | c5cf47443985c34ad32c44c322901e0fc3a065d7 (patch) | |
tree | f7d6abd03304c4f2359a4753aae23e41982c0e17 /source4/include | |
parent | 7fd381376f88ae99a4bf022d89f21ae497b48c1a (diff) | |
download | samba-c5cf47443985c34ad32c44c322901e0fc3a065d7.tar.gz samba-c5cf47443985c34ad32c44c322901e0fc3a065d7.tar.bz2 samba-c5cf47443985c34ad32c44c322901e0fc3a065d7.zip |
a major revamp of the low level dcerpc code in samba4, We can now do a
successful LSA OpenPolicy using smbtorture
(This used to be commit e925c315f55905060fcca1b188ae1f7e40baf514)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/dcerpc_interfaces.h | 93 | ||||
-rw-r--r-- | source4/include/includes.h | 5 | ||||
-rw-r--r-- | source4/include/smb.h | 1 | ||||
-rw-r--r-- | source4/include/smb_interfaces.h | 2 |
4 files changed, 4 insertions, 97 deletions
diff --git a/source4/include/dcerpc_interfaces.h b/source4/include/dcerpc_interfaces.h deleted file mode 100644 index 831e19c1e3..0000000000 --- a/source4/include/dcerpc_interfaces.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - Unix SMB/CIFS implementation. - DCERPC interface structures - Copyright (C) Tim Potter 2003 - - 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 - the Free Software Foundation; either version 2 of the License, or - (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 - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ - -struct dcerpc_hdr { - uint8 rpc_vers; /* RPC version */ - uint8 rpc_vers_minor; /* Minor version */ - uint8 ptype; /* Packet type */ - uint8 pfc_flags; /* Fragmentation flags */ - uint8 drep[4]; /* NDR data representation */ - uint16 frag_len; /* Total length of fragment */ - uint32 call_id; /* Call identifier */ -}; - -struct dcerpc_uuid { - uint32 time_low; - uint16 time_mid; - uint16 time_hi_and_version; - uint8 remaining[8]; -}; - -struct syntax_id { - struct dcerpc_uuid if_uuid; - uint32 if_version; -}; - -struct p_ctx_list { - uint16 cont_id; /* Context id */ - uint8 num_ts; /* Number of transfer syntaxes */ - struct syntax_id *as; /* Abstract syntax */ - struct syntax_id *ts; /* Transfer syntaxes */ -}; - -struct dcerpc_bind { - struct { - struct dcerpc_hdr hdr; /* Header */ - uint16 max_xmit_frag; /* Max transmit frag size */ - uint16 max_recv_frag; /* Max receive frag size */ - uint32 assoc_group_id; /* Association group */ - uint8 num_contexts; /* Number of presentation contexts */ - struct p_ctx_list *ctx_list; /* Presentation context list */ - DATA_BLOB auth_verifier; - } in; - struct { - struct dcerpc_hdr hdr; /* Header */ - uint16 max_xmit_frag; /* Max transmit frag size */ - uint16 max_recv_frag; /* Max receive frag size */ - uint32 assoc_group_id; /* Association group */ - DATA_BLOB auth_verifier; - } out; -}; - -struct dcerpc_request { - struct { - struct dcerpc_hdr hdr; - uint32 alloc_hint; /* Allocation hint */ - uint16 cont_id; /* Context id */ - uint16 opnum; /* Operation number */ - DATA_BLOB stub_data; - DATA_BLOB auth_verifier; - } in; - struct { - struct dcerpc_hdr hdr; - uint32 alloc_hint; /* Allocation hint */ - uint8 cancel_count; /* Context id */ - DATA_BLOB stub_data; - DATA_BLOB auth_verifier; - } out; -}; - -struct cli_dcerpc_pipe { - TALLOC_CTX *mem_ctx; - uint16 fnum; - int reference_count; - uint32 call_id; - struct cli_tree *tree; -}; diff --git a/source4/include/includes.h b/source4/include/includes.h index 39b589a49d..68bd3b629f 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -776,8 +776,9 @@ extern int errno; #include "mutex.h" -#include "libcli/rpc/librpc.h" -#include "libcli/rpc/rpc_sec.h" +#include "libcli/ndr/libndr.h" +#include "libcli/ndr/ndr_sec.h" +#include "libcli/rpc/dcerpc.h" /* * Type for wide character dirent structure. diff --git a/source4/include/smb.h b/source4/include/smb.h index d0a8e43e81..b791182aa6 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -430,7 +430,6 @@ struct vuid_cache { #include "events.h" #include "context.h" #include "smb_interfaces.h" -#include "dcerpc_interfaces.h" #include "ntvfs.h" typedef struct smb_vfs_handle_struct diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 77b73ecd7c..fd393c9db3 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -1610,7 +1610,7 @@ struct smb_trans2 { uint32 timeout; uint8 setup_count; uint16 *setup; - char *trans_name; /* SMBtrans only */ + const char *trans_name; /* SMBtrans only */ DATA_BLOB params; DATA_BLOB data; } in; |