Changeset 222 for branches/samba-3.3.x/source/include
- Timestamp:
- May 24, 2009, 7:45:16 AM (16 years ago)
- Location:
- branches/samba-3.3.x/source/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/include/config.h.in
r221 r222 3225 3225 #undef vfs_prealloc_init 3226 3226 3227 /* Whether to build vfs_preopen as shared module */ 3228 #undef vfs_preopen_init 3229 3227 3230 /* Whether to build vfs_readahead as shared module */ 3228 3231 #undef vfs_readahead_init -
branches/samba-3.3.x/source/include/includes.h
r221 r222 208 208 #endif 209 209 210 #if HAVE_GSSAPI_H 211 #include <gssapi.h> 212 #elif HAVE_GSSAPI_GSSAPI_H 210 #if HAVE_GSSAPI_GSSAPI_H 213 211 #include <gssapi/gssapi.h> 214 212 #elif HAVE_GSSAPI_GSSAPI_GENERIC_H 215 213 #include <gssapi/gssapi_generic.h> 214 #elif HAVE_GSSAPI_H 215 #include <gssapi.h> 216 216 #endif 217 217 -
branches/samba-3.3.x/source/include/libsmbclient.h
r221 r222 2678 2678 2679 2679 void 2680 smbc_set_credentials(c har *workgroup,2681 c har *user,2682 c har *password,2680 smbc_set_credentials(const char *workgroup, 2681 const char *user, 2682 const char *password, 2683 2683 smbc_bool use_kerberos, 2684 c har *signing_state);2684 const char *signing_state); 2685 2685 2686 2686 /* -
branches/samba-3.3.x/source/include/proto.h
r221 r222 4943 4943 void srv_calculate_sign_mac(char *outbuf); 4944 4944 void srv_defer_sign_response(uint16 mid); 4945 void srv_cancel_sign_response(uint16 mid );4945 void srv_cancel_sign_response(uint16 mid, bool cancel); 4946 4946 void srv_set_signing_negotiated(void); 4947 4947 bool srv_is_signing_active(void); … … 5203 5203 NTSTATUS can_set_delete_on_close(files_struct *fsp, bool delete_on_close, 5204 5204 uint32 dosmode); 5205 void set_delete_on_close_token(struct share_mode_lock *lck, UNIX_USER_TOKEN *tok);5206 void set_delete_on_close_lck(struct share_mode_lock *lck, bool delete_on_close, UNIX_USER_TOKEN *tok);5207 bool set_delete_on_close(files_struct *fsp, bool delete_on_close, UNIX_USER_TOKEN *tok);5205 void set_delete_on_close_token(struct share_mode_lock *lck, const UNIX_USER_TOKEN *tok); 5206 void set_delete_on_close_lck(struct share_mode_lock *lck, bool delete_on_close, const UNIX_USER_TOKEN *tok); 5207 bool set_delete_on_close(files_struct *fsp, bool delete_on_close, const UNIX_USER_TOKEN *tok); 5208 5208 bool set_sticky_write_time(struct file_id fileid, struct timespec write_time); 5209 5209 bool set_write_time(struct file_id fileid, struct timespec write_time); … … 8907 8907 files_struct *file_find_di_next(files_struct *start_fsp); 8908 8908 files_struct *file_find_print(void); 8909 bool file_find_subpath(files_struct *dir_fsp); 8909 8910 void file_sync_all(connection_struct *conn); 8910 8911 void file_free(files_struct *fsp); -
branches/samba-3.3.x/source/include/smb.h
r221 r222 597 597 */ 598 598 struct auth_serversupplied_info *server_info; 599 600 /* 601 * If the "force group" parameter is set, this is the primary gid that 602 * may be used in the users token, depending on the vuid using this tid. 603 */ 604 gid_t force_group_gid; 599 605 600 606 char client_address[INET6_ADDRSTRLEN]; /* String version of client IP address. */ -
branches/samba-3.3.x/source/include/version.h
r221 r222 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 3 4 #define SAMBA_VERSION_RELEASE 15 #define SAMBA_VERSION_OFFICIAL_STRING "3.3. 1"4 #define SAMBA_VERSION_RELEASE 2 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.3.2" 6 6 #define SAMBA_VERSION_STRING samba_version_string()
Note:
See TracChangeset
for help on using the changeset viewer.