Changeset 919 for vendor/current/source3/include
- Timestamp:
- Jun 9, 2016, 2:17:22 PM (9 years ago)
- Location:
- vendor/current/source3/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/include/ntdomain.h
r917 r919 88 88 int n_cmds; 89 89 uint32 context_id; 90 90 struct ndr_syntax_id syntax; 91 92 /* 93 * shall we allow "connect" auth level for this interface ? 94 */ 95 bool allow_connect; 91 96 } PIPE_RPC_FNS; 92 97 … … 135 140 136 141 /* 137 * Set to true when we should return fault PDU's for everything. 138 */ 139 140 bool fault_state; 141 142 /* 143 * Set to true when we should return fault PDU's for a bad handle. 144 */ 145 146 bool bad_handle_fault_state; 147 148 /* 149 * Set to true when the backend does not support a call. 150 */ 151 152 bool rng_fault_state; 142 * States we can be in. 143 */ 144 bool allow_alter; 145 bool allow_bind; 146 bool allow_auth3; 147 148 /* 149 * Set the DCERPC_FAULT to return. 150 */ 151 152 int fault_state; 153 153 154 154 /* -
vendor/current/source3/include/proto.h
r860 r919 61 61 bool get_audit_category_from_param(const char *param, uint32 *audit_category); 62 62 const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32 policy); 63 64 /* The following definitions come from lib/bitmap.c */65 66 struct bitmap *bitmap_talloc(TALLOC_CTX *mem_ctx, int n);67 int bitmap_copy(struct bitmap * const dst, const struct bitmap * const src);68 bool bitmap_set(struct bitmap *bm, unsigned i);69 bool bitmap_clear(struct bitmap *bm, unsigned i);70 bool bitmap_query(struct bitmap *bm, unsigned i);71 int bitmap_find(struct bitmap *bm, unsigned ofs);72 63 73 64 /* The following definitions come from lib/charcnv.c */ … … 1270 1261 void ntlmssp_want_feature_list(struct ntlmssp_state *ntlmssp_state, char *feature_list); 1271 1262 void ntlmssp_want_feature(struct ntlmssp_state *ntlmssp_state, uint32_t feature); 1263 bool ntlmssp_have_feature(struct ntlmssp_state *ntlmssp_state, uint32_t feature); 1272 1264 NTSTATUS ntlmssp_update(struct ntlmssp_state *ntlmssp_state, 1273 1265 const DATA_BLOB in, DATA_BLOB *out) ; … … 1499 1491 bool lp_lanman_auth(void); 1500 1492 bool lp_ntlm_auth(void); 1493 bool lp_raw_ntlmv2_auth(void); 1501 1494 bool lp_client_plaintext_auth(void); 1502 1495 bool lp_client_lanman_auth(void); … … 1698 1691 int lp_winbind_max_clients(void); 1699 1692 const char **lp_winbind_nss_info(void); 1693 bool lp_winbind_sealed_pipes(void); 1700 1694 int lp_algorithmic_rid_base(void); 1701 1695 int lp_name_cache_timeout(void); 1702 1696 int lp_client_signing(void); 1697 int lp_client_ipc_signing(void); 1703 1698 int lp_server_signing(void); 1704 1699 int lp_client_ldap_sasl_wrapping(void); … … 1827 1822 void widelinks_warning(int snum); 1828 1823 char *lp_ncalrpc_dir(void); 1824 bool lp_allow_dcerpc_auth_level_connect(void); 1829 1825 1830 1826 /* The following definitions come from param/loadparm_server_role.c */ -
vendor/current/source3/include/smb.h
r860 r919 713 713 }; 714 714 715 716 715 /* the following are used by loadparm for option lists */ 717 716 typedef enum { … … 759 758 #define FLAG_META 0x8000 /* A meta directive - not a real parameter */ 760 759 #define FLAG_CMDLINE 0x10000 /* option has been overridden */ 761 762 struct bitmap {763 uint32 *b;764 unsigned int n;765 };766 760 767 761 /* offsets into message for common items */
Note:
See TracChangeset
for help on using the changeset viewer.