Ignore:
Timestamp:
Mar 11, 2009, 9:14:55 AM (16 years ago)
Author:
Paul Smedley
Message:

Add 'missing' 3.0.34 diffs

Location:
branches/samba-3.0/source/include
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/include/ads.h

    r124 r165  
    5757                char *client_site_name;
    5858                time_t current_time;
    59                 int tried_closest_dc;
    6059        } config;
    6160} ADS_STRUCT;
  • branches/samba-3.0/source/include/config.h.in

    r124 r165  
    716716#undef HAVE_KERNEL_SHARE_MODES
    717717
     718/* Define to 1 if you have the <keyutils.h> header file. */
     719#undef HAVE_KEYUTILS_H
     720
    718721/* Whether to have KRB5 support */
    719722#undef HAVE_KRB5
     
    24602463/* Whether to build mount.cifs and umount.cifs */
    24612464#undef WITH_CIFSMOUNT
     2465
     2466/* whether to build cifs.upcall */
     2467#undef WITH_CIFSUPCALL
    24622468
    24632469/* Whether to include DFS support */
     
    25702576# undef _POSIX_PTHREAD_SEMANTICS
    25712577#endif
     2578#ifndef _TANDEM_SOURCE
     2579# undef _TANDEM_SOURCE
     2580#endif
    25722581
    25732582/* Whether to build auth_builtin as shared module */
  • branches/samba-3.0/source/include/rpc_dce.h

    r134 r165  
    105105#define NETLOGON_NEG_SCHANNEL                   0x40000000
    106106
     107#define NETLOGON_NEG_PASSWORD_SET2              0x00020000
     108
    107109/* The 7 here seems to be required to get Win2k not to downgrade us
    108110   to NT4.  Actually, anything other than 1ff would seem to do... */
  • branches/samba-3.0/source/include/rpc_netlogon.h

    r44 r165  
    4343#define NET_DSR_GETDCNAMEEX     0x1b
    4444#define NET_DSR_GETSITENAME     0x1c
     45#define NET_SRVPWSET2           0x1e
    4546#define NET_DSR_GETDCNAMEEX2    0x22
    4647#define NET_SAMLOGON_EX         0x27
     
    530531        NTSTATUS status; /* return code */
    531532} NET_R_SRV_PWSET;
     533
     534typedef struct net_crypt_password {
     535        uint8_t data[512];
     536        uint32_t length;
     537} NET_CRYPT_PWD;
     538
     539/* NET_Q_SRV_PWSET2 */
     540typedef struct net_q_srv_pwset2_info {
     541        DOM_CLNT_INFO clnt_id; /* client identification/authentication info */
     542        NET_CRYPT_PWD pwd; /* new password */
     543} NET_Q_SRV_PWSET2;
     544
     545/* NET_R_SRV_PWSET2 */
     546typedef struct net_r_srv_pwset2_info {
     547        DOM_CRED srv_cred;     /* server-calculated credentials */
     548        NTSTATUS status; /* return code */
     549} NET_R_SRV_PWSET2;
    532550
    533551/* NET_ID_INFO_2 */
  • branches/samba-3.0/source/include/smb.h

    r140 r165  
    2929
    3030/* logged when starting the various Samba daemons */
    31 #define COPYRIGHT_STARTUP_MESSAGE       "Copyright Andrew Tridgell and the Samba Team 1992-2008"
     31#define COPYRIGHT_STARTUP_MESSAGE       "Copyright Andrew Tridgell and the Samba Team 1992-2009"
    3232
    3333
     
    15641564
    15651565/* LDAP SSL options */
    1566 enum ldap_ssl_types {LDAP_SSL_ON, LDAP_SSL_OFF, LDAP_SSL_START_TLS};
     1566enum ldap_ssl_types {LDAP_SSL_OFF, LDAP_SSL_START_TLS};
    15671567
    15681568/* LDAP PASSWD SYNC methods */
Note: See TracChangeset for help on using the changeset viewer.