Changeset 342 for branches/samba-3.3.x/source/include
- Timestamp:
- Oct 30, 2009, 9:39:05 AM (16 years ago)
- Location:
- branches/samba-3.3.x/source/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/include/proto.h
r224 r342 6892 6892 char ***pnames, 6893 6893 enum lsa_SidType **ptypes); 6894 NTSTATUS rpccli_lsa_lookup_sids3(struct rpc_pipe_client *cli, 6895 TALLOC_CTX *mem_ctx, 6896 struct policy_handle *pol, 6897 int num_sids, 6898 const DOM_SID *sids, 6899 char ***pdomains, 6900 char ***pnames, 6901 enum lsa_SidType **ptypes); 6894 6902 NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli, 6895 6903 TALLOC_CTX *mem_ctx, … … 6900 6908 DOM_SID **sids, 6901 6909 enum lsa_SidType **types); 6910 NTSTATUS rpccli_lsa_lookup_names4(struct rpc_pipe_client *cli, 6911 TALLOC_CTX *mem_ctx, 6912 struct policy_handle *pol, int num_names, 6913 const char **names, 6914 const char ***dom_names, 6915 int level, 6916 DOM_SID **sids, 6917 enum lsa_SidType **types); 6918 6902 6919 bool fetch_domain_sid( char *domain, char *remote_machine, DOM_SID *psid); 6903 6920 … … 6989 7006 const struct ndr_syntax_id *interface, 6990 7007 struct rpc_pipe_client **presult); 7008 NTSTATUS cli_rpc_pipe_open_noauth_transport(struct cli_state *cli, 7009 enum dcerpc_transport_t transport, 7010 const struct ndr_syntax_id *interface, 7011 struct rpc_pipe_client **presult); 6991 7012 NTSTATUS cli_rpc_pipe_open_ntlmssp(struct cli_state *cli, 6992 7013 const struct ndr_syntax_id *interface, 7014 enum dcerpc_transport_t transport, 6993 7015 enum pipe_auth_level auth_level, 6994 7016 const char *domain, … … 6998 7020 NTSTATUS cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state *cli, 6999 7021 const struct ndr_syntax_id *interface, 7022 enum dcerpc_transport_t transport, 7000 7023 enum pipe_auth_level auth_level, 7001 7024 const char *domain, … … 7009 7032 NTSTATUS cli_rpc_pipe_open_schannel_with_key(struct cli_state *cli, 7010 7033 const struct ndr_syntax_id *interface, 7034 enum dcerpc_transport_t transport, 7011 7035 enum pipe_auth_level auth_level, 7012 7036 const char *domain, … … 7015 7039 NTSTATUS cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state *cli, 7016 7040 const struct ndr_syntax_id *interface, 7041 enum dcerpc_transport_t transport, 7017 7042 enum pipe_auth_level auth_level, 7018 7043 const char *domain, … … 7022 7047 NTSTATUS cli_rpc_pipe_open_schannel(struct cli_state *cli, 7023 7048 const struct ndr_syntax_id *interface, 7049 enum dcerpc_transport_t transport, 7024 7050 enum pipe_auth_level auth_level, 7025 7051 const char *domain, -
branches/samba-3.3.x/source/include/rpc_dce.h
r206 r342 151 151 152 152 /* Maximum size of the signing data in a fragment. */ 153 #define RPC_MAX_SIGN_SIZE 0x 20 /* 32*/153 #define RPC_MAX_SIGN_SIZE 0x38 /* 56 */ 154 154 155 155 /* Maximum PDU fragment size. */ -
branches/samba-3.3.x/source/include/version.h
r338 r342 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 3 4 #define SAMBA_VERSION_RELEASE 8 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.3.8" 6 #define SAMBA_VERSION_VENDOR_SUFFIX "eCS 1.1.x-TEST" 7 #define SAMBA_VERSION_VENDOR_PATCH 20091006 8 #define SAMBA_VERSION_VENDOR_PATCH_STRING "20091006" 4 #define SAMBA_VERSION_RELEASE 9 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.3.9" 9 6 #define SAMBA_VERSION_STRING samba_version_string()
Note:
See TracChangeset
for help on using the changeset viewer.