Ignore:
Timestamp:
Oct 30, 2009, 9:39:05 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.3 to 3.3.9

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  
    68926892                                char ***pnames,
    68936893                                enum lsa_SidType **ptypes);
     6894NTSTATUS 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);
    68946902NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli,
    68956903                                 TALLOC_CTX *mem_ctx,
     
    69006908                                 DOM_SID **sids,
    69016909                                 enum lsa_SidType **types);
     6910NTSTATUS 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
    69026919bool fetch_domain_sid( char *domain, char *remote_machine, DOM_SID *psid);
    69036920
     
    69897006                                  const struct ndr_syntax_id *interface,
    69907007                                  struct rpc_pipe_client **presult);
     7008NTSTATUS 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);
    69917012NTSTATUS cli_rpc_pipe_open_ntlmssp(struct cli_state *cli,
    69927013                                   const struct ndr_syntax_id *interface,
     7014                                   enum dcerpc_transport_t transport,
    69937015                                   enum pipe_auth_level auth_level,
    69947016                                   const char *domain,
     
    69987020NTSTATUS cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state *cli,
    69997021                                          const struct ndr_syntax_id *interface,
     7022                                          enum dcerpc_transport_t transport,
    70007023                                          enum pipe_auth_level auth_level,
    70017024                                          const char *domain,
     
    70097032NTSTATUS cli_rpc_pipe_open_schannel_with_key(struct cli_state *cli,
    70107033                                             const struct ndr_syntax_id *interface,
     7034                                             enum dcerpc_transport_t transport,
    70117035                                             enum pipe_auth_level auth_level,
    70127036                                             const char *domain,
     
    70157039NTSTATUS cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state *cli,
    70167040                                                 const struct ndr_syntax_id *interface,
     7041                                                 enum dcerpc_transport_t transport,
    70177042                                                 enum pipe_auth_level auth_level,
    70187043                                                 const char *domain,
     
    70227047NTSTATUS cli_rpc_pipe_open_schannel(struct cli_state *cli,
    70237048                                    const struct ndr_syntax_id *interface,
     7049                                    enum dcerpc_transport_t transport,
    70247050                                    enum pipe_auth_level auth_level,
    70257051                                    const char *domain,
  • branches/samba-3.3.x/source/include/rpc_dce.h

    r206 r342  
    151151
    152152/* Maximum size of the signing data in a fragment. */
    153 #define RPC_MAX_SIGN_SIZE 0x20 /* 32 */
     153#define RPC_MAX_SIGN_SIZE 0x38 /* 56 */
    154154
    155155/* Maximum PDU fragment size. */
  • branches/samba-3.3.x/source/include/version.h

    r338 r342  
    22#define SAMBA_VERSION_MAJOR 3
    33#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"
    96#define SAMBA_VERSION_STRING samba_version_string()
Note: See TracChangeset for help on using the changeset viewer.