Ignore:
Timestamp:
May 12, 2014, 8:58:38 PM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.6: updated vendor to latest version

Location:
vendor/current/source3/include
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/include/config.h.in

    r746 r860  
    457457#undef HAVE_DUP2
    458458
     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
    459467/* Whether the ENCTYPE_ARCFOUR_HMAC key type definition is available */
    460468#undef HAVE_ENCTYPE_ARCFOUR_HMAC
     
    14201428#undef HAVE_MAKEDEV
    14211429
    1422 /* Whether md5.h is available. */
     1430/* Define to 1 if you have the <md5.h> header file. */
    14231431#undef HAVE_MD5_H
    14241432
     
    16261634/* Define to 1 if you have the `posix_memalign' function. */
    16271635#undef HAVE_POSIX_MEMALIGN
     1636
     1637/* Define to 1 if you have the `posix_openpt' function. */
     1638#undef HAVE_POSIX_OPENPT
    16281639
    16291640/* Whether prctl is available */
     
    22982309#undef HAVE_SYS_TYPES_H
    22992310
     2311/* Define to 1 if you have the <sys/ucontext.h> header file. */
     2312#undef HAVE_SYS_UCONTEXT_H
     2313
    23002314/* Define to 1 if you have the <sys/uio.h> header file. */
    23012315#undef HAVE_SYS_UIO_H
     
    23452359/* Whether crypt needs truncated salt */
    23462360#undef HAVE_TRUNCATED_SALT
     2361
     2362/* Whether we have ucontext_t */
     2363#undef HAVE_UCONTEXT_T
    23472364
    23482365/* Whether uint16 typedef is included by rpc/rpc.h */
     
    30983115#undef XATTR_ADD_OPT
    30993116
     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
    31003122/* File offset bits */
    31013123#undef _FILE_OFFSET_BITS
  • vendor/current/source3/include/nt_printing.h

    r746 r860  
    133133                        int access_type);
    134134
     135WERROR 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
    135140WERROR nt_printer_publish(TALLOC_CTX *mem_ctx,
    136141                          const struct auth_serversupplied_info *server_info,
     
    142147                          const struct auth_serversupplied_info *server_info,
    143148                          struct messaging_context *msg_ctx,
    144                           const char *servername, char *printer, struct GUID *guid,
     149                          const char *servername,
     150                          const char *printer,
    145151                          struct spoolss_PrinterInfo2 **info2);
    146152
  • vendor/current/source3/include/ntioctl.h

    r746 r860  
    123123#define IO_REPARSE_TAG_HSM           0xC0000004
    124124#define IO_REPARSE_TAG_SIS           0x80000007
     125#define IO_REPARSE_TAG_DFS           0x8000000A
    125126
    126127
  • vendor/current/source3/include/proto.h

    r746 r860  
    18471847struct sessionid;
    18481848bool sessionid_init(void);
     1849bool sessionid_init_readonly(void);
    18491850struct db_record *sessionid_fetch_record(TALLOC_CTX *mem_ctx, const char *key);
    18501851int sessionid_traverse(int (*fn)(struct db_record *rec, const char *key,
     
    19711972void send_stat_cache_delete_message(struct messaging_context *msg_ctx,
    19721973                                    const char *name);
    1973 NTSTATUS can_delete_directory(struct connection_struct *conn,
    1974                                 const char *dirname);
     1974NTSTATUS can_delete_directory_fsp(files_struct *fsp);
    19751975bool change_to_root_user(void);
    19761976struct event_context *smbd_event_context(void);
  • vendor/current/source3/include/serverid.h

    r746 r860  
    7474uint64_t serverid_get_random_unique_id(void);
    7575
     76bool serverid_init_readonly(TALLOC_CTX *mem_ctx);
     77
    7678#endif
  • vendor/current/source3/include/smb.h

    r746 r860  
    17171717#define UCF_POSIX_PATHNAMES             0x00000008
    17181718#define UCF_UNIX_NAME_LOOKUP            0x00000010
     1719#define UCF_CREATING_FILE               0x00000020
    17191720
    17201721/*
  • vendor/current/source3/include/version.h

    r746 r860  
    22#define SAMBA_VERSION_MAJOR 3
    33#define SAMBA_VERSION_MINOR 6
    4 #define SAMBA_VERSION_RELEASE 9
    5 #define SAMBA_VERSION_OFFICIAL_STRING "3.6.9"
     4#define SAMBA_VERSION_RELEASE 23
     5#define SAMBA_VERSION_OFFICIAL_STRING "3.6.23"
    66#ifdef SAMBA_VERSION_VENDOR_FUNCTION
    77#  define SAMBA_VERSION_STRING SAMBA_VERSION_VENDOR_FUNCTION
Note: See TracChangeset for help on using the changeset viewer.