Changeset 165 for branches/samba-3.0/source/include
- Timestamp:
- Mar 11, 2009, 9:14:55 AM (16 years ago)
- Location:
- branches/samba-3.0/source/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/include/ads.h
r124 r165 57 57 char *client_site_name; 58 58 time_t current_time; 59 int tried_closest_dc;60 59 } config; 61 60 } ADS_STRUCT; -
branches/samba-3.0/source/include/config.h.in
r124 r165 716 716 #undef HAVE_KERNEL_SHARE_MODES 717 717 718 /* Define to 1 if you have the <keyutils.h> header file. */ 719 #undef HAVE_KEYUTILS_H 720 718 721 /* Whether to have KRB5 support */ 719 722 #undef HAVE_KRB5 … … 2460 2463 /* Whether to build mount.cifs and umount.cifs */ 2461 2464 #undef WITH_CIFSMOUNT 2465 2466 /* whether to build cifs.upcall */ 2467 #undef WITH_CIFSUPCALL 2462 2468 2463 2469 /* Whether to include DFS support */ … … 2570 2576 # undef _POSIX_PTHREAD_SEMANTICS 2571 2577 #endif 2578 #ifndef _TANDEM_SOURCE 2579 # undef _TANDEM_SOURCE 2580 #endif 2572 2581 2573 2582 /* Whether to build auth_builtin as shared module */ -
branches/samba-3.0/source/include/rpc_dce.h
r134 r165 105 105 #define NETLOGON_NEG_SCHANNEL 0x40000000 106 106 107 #define NETLOGON_NEG_PASSWORD_SET2 0x00020000 108 107 109 /* The 7 here seems to be required to get Win2k not to downgrade us 108 110 to NT4. Actually, anything other than 1ff would seem to do... */ -
branches/samba-3.0/source/include/rpc_netlogon.h
r44 r165 43 43 #define NET_DSR_GETDCNAMEEX 0x1b 44 44 #define NET_DSR_GETSITENAME 0x1c 45 #define NET_SRVPWSET2 0x1e 45 46 #define NET_DSR_GETDCNAMEEX2 0x22 46 47 #define NET_SAMLOGON_EX 0x27 … … 530 531 NTSTATUS status; /* return code */ 531 532 } NET_R_SRV_PWSET; 533 534 typedef struct net_crypt_password { 535 uint8_t data[512]; 536 uint32_t length; 537 } NET_CRYPT_PWD; 538 539 /* NET_Q_SRV_PWSET2 */ 540 typedef 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 */ 546 typedef struct net_r_srv_pwset2_info { 547 DOM_CRED srv_cred; /* server-calculated credentials */ 548 NTSTATUS status; /* return code */ 549 } NET_R_SRV_PWSET2; 532 550 533 551 /* NET_ID_INFO_2 */ -
branches/samba-3.0/source/include/smb.h
r140 r165 29 29 30 30 /* logged when starting the various Samba daemons */ 31 #define COPYRIGHT_STARTUP_MESSAGE "Copyright Andrew Tridgell and the Samba Team 1992-200 8"31 #define COPYRIGHT_STARTUP_MESSAGE "Copyright Andrew Tridgell and the Samba Team 1992-2009" 32 32 33 33 … … 1564 1564 1565 1565 /* LDAP SSL options */ 1566 enum ldap_ssl_types {LDAP_SSL_O N, LDAP_SSL_OFF, LDAP_SSL_START_TLS};1566 enum ldap_ssl_types {LDAP_SSL_OFF, LDAP_SSL_START_TLS}; 1567 1567 1568 1568 /* LDAP PASSWD SYNC methods */
Note:
See TracChangeset
for help on using the changeset viewer.