Changeset 860 for vendor/current/source3/include
- Timestamp:
- May 12, 2014, 8:58:38 PM (11 years ago)
- Location:
- vendor/current/source3/include
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/include/config.h.in
r746 r860 457 457 #undef HAVE_DUP2 458 458 459 /* Whether the ENCTYPE_AES128_CTS_HMAC_SHA1_96 key type definition is 460 available */ 461 #undef HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96 462 463 /* Whether the ENCTYPE_AES256_CTS_HMAC_SHA1_96 key type definition is 464 available */ 465 #undef HAVE_ENCTYPE_AES256_CTS_HMAC_SHA1_96 466 459 467 /* Whether the ENCTYPE_ARCFOUR_HMAC key type definition is available */ 460 468 #undef HAVE_ENCTYPE_ARCFOUR_HMAC … … 1420 1428 #undef HAVE_MAKEDEV 1421 1429 1422 /* Whether md5.h is available. */1430 /* Define to 1 if you have the <md5.h> header file. */ 1423 1431 #undef HAVE_MD5_H 1424 1432 … … 1626 1634 /* Define to 1 if you have the `posix_memalign' function. */ 1627 1635 #undef HAVE_POSIX_MEMALIGN 1636 1637 /* Define to 1 if you have the `posix_openpt' function. */ 1638 #undef HAVE_POSIX_OPENPT 1628 1639 1629 1640 /* Whether prctl is available */ … … 2298 2309 #undef HAVE_SYS_TYPES_H 2299 2310 2311 /* Define to 1 if you have the <sys/ucontext.h> header file. */ 2312 #undef HAVE_SYS_UCONTEXT_H 2313 2300 2314 /* Define to 1 if you have the <sys/uio.h> header file. */ 2301 2315 #undef HAVE_SYS_UIO_H … … 2345 2359 /* Whether crypt needs truncated salt */ 2346 2360 #undef HAVE_TRUNCATED_SALT 2361 2362 /* Whether we have ucontext_t */ 2363 #undef HAVE_UCONTEXT_T 2347 2364 2348 2365 /* Whether uint16 typedef is included by rpc/rpc.h */ … … 3098 3115 #undef XATTR_ADD_OPT 3099 3116 3117 /* Enable large inode numbers on Mac OS X 10.5. */ 3118 #ifndef _DARWIN_USE_64_BIT_INODE 3119 # define _DARWIN_USE_64_BIT_INODE 1 3120 #endif 3121 3100 3122 /* File offset bits */ 3101 3123 #undef _FILE_OFFSET_BITS -
vendor/current/source3/include/nt_printing.h
r746 r860 133 133 int access_type); 134 134 135 WERROR nt_printer_guid_get(TALLOC_CTX *mem_ctx, 136 const struct auth_serversupplied_info *server_info, 137 struct messaging_context *msg_ctx, 138 const char *printer, struct GUID *guid); 139 135 140 WERROR nt_printer_publish(TALLOC_CTX *mem_ctx, 136 141 const struct auth_serversupplied_info *server_info, … … 142 147 const struct auth_serversupplied_info *server_info, 143 148 struct messaging_context *msg_ctx, 144 const char *servername, char *printer, struct GUID *guid, 149 const char *servername, 150 const char *printer, 145 151 struct spoolss_PrinterInfo2 **info2); 146 152 -
vendor/current/source3/include/ntioctl.h
r746 r860 123 123 #define IO_REPARSE_TAG_HSM 0xC0000004 124 124 #define IO_REPARSE_TAG_SIS 0x80000007 125 #define IO_REPARSE_TAG_DFS 0x8000000A 125 126 126 127 -
vendor/current/source3/include/proto.h
r746 r860 1847 1847 struct sessionid; 1848 1848 bool sessionid_init(void); 1849 bool sessionid_init_readonly(void); 1849 1850 struct db_record *sessionid_fetch_record(TALLOC_CTX *mem_ctx, const char *key); 1850 1851 int sessionid_traverse(int (*fn)(struct db_record *rec, const char *key, … … 1971 1972 void send_stat_cache_delete_message(struct messaging_context *msg_ctx, 1972 1973 const char *name); 1973 NTSTATUS can_delete_directory(struct connection_struct *conn, 1974 const char *dirname); 1974 NTSTATUS can_delete_directory_fsp(files_struct *fsp); 1975 1975 bool change_to_root_user(void); 1976 1976 struct event_context *smbd_event_context(void); -
vendor/current/source3/include/serverid.h
r746 r860 74 74 uint64_t serverid_get_random_unique_id(void); 75 75 76 bool serverid_init_readonly(TALLOC_CTX *mem_ctx); 77 76 78 #endif -
vendor/current/source3/include/smb.h
r746 r860 1717 1717 #define UCF_POSIX_PATHNAMES 0x00000008 1718 1718 #define UCF_UNIX_NAME_LOOKUP 0x00000010 1719 #define UCF_CREATING_FILE 0x00000020 1719 1720 1720 1721 /* -
vendor/current/source3/include/version.h
r746 r860 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 6 4 #define SAMBA_VERSION_RELEASE 95 #define SAMBA_VERSION_OFFICIAL_STRING "3.6. 9"4 #define SAMBA_VERSION_RELEASE 23 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.6.23" 6 6 #ifdef SAMBA_VERSION_VENDOR_FUNCTION 7 7 # define SAMBA_VERSION_STRING SAMBA_VERSION_VENDOR_FUNCTION
Note:
See TracChangeset
for help on using the changeset viewer.