Changeset 427 for vendor/current/source3/include
- Timestamp:
- Apr 9, 2010, 3:20:58 PM (15 years ago)
- Location:
- vendor/current/source3/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/include/client.h
r414 r427 111 111 NTSTATUS (*trans_recv)(struct tevent_req *req, TALLOC_CTX *mem_ctx, 112 112 uint8_t **prdata, uint32_t *prdata_len); 113 114 bool (*is_connected)(void *priv); 115 unsigned int (*set_timeout)(void *priv, unsigned int timeout); 116 113 117 void *priv; 114 118 }; -
vendor/current/source3/include/config.h.in
r414 r427 359 359 #undef HAVE_CRYPT_H 360 360 361 /* Whether CTDB_CONTROL_TRANS2_ACTIVE() is available */ 362 #undef HAVE_CTDB_CONTROL_TRANS2_ACTIVE_DECL 363 364 /* Whether CTDB_CONTROL_TRANS2_COMMIT_RETRY() is available */ 365 #undef HAVE_CTDB_CONTROL_TRANS2_COMMIT_RETRY_DECL 361 /* Whether CTDB_CONTROL_TRANS3_COMMIT() is available */ 362 #undef HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL 366 363 367 364 /* Define to 1 if you have the <ctdb.h> header file. */ … … 1730 1727 /* Define to 1 if you have the `printf' function. */ 1731 1728 #undef HAVE_PRINTF 1729 1730 /* Do we have pthreads around? */ 1731 #undef HAVE_PTHREAD 1732 1732 1733 1733 /* Define to 1 if you have the <pthread.h> header file. */ -
vendor/current/source3/include/ctdbd_conn.h
r414 r427 32 32 NTSTATUS ctdbd_register_msg_ctx(struct ctdbd_connection *conn, 33 33 struct messaging_context *msg_ctx); 34 struct messaging_context *ctdb_conn_msg_ctx(struct ctdbd_connection *conn); 35 36 int ctdbd_conn_get_fd(struct ctdbd_connection *conn); 34 37 35 38 NTSTATUS ctdbd_messaging_send(struct ctdbd_connection *conn, … … 74 77 TALLOC_CTX *mem_ctx, TDB_DATA *outdata, 75 78 int *cstatus); 79 NTSTATUS ctdb_watch_us(struct ctdbd_connection *conn); 80 NTSTATUS ctdb_unwatch(struct ctdbd_connection *conn); 76 81 77 82 #endif /* _CTDBD_CONN_H */ -
vendor/current/source3/include/proto.h
r414 r427 2335 2335 void cli_set_nt_error(struct cli_state *cli, NTSTATUS status); 2336 2336 void cli_reset_error(struct cli_state *cli); 2337 bool cli_state_is_connected(struct cli_state *cli); 2337 2338 2338 2339 /* The following definitions come from libsmb/clifile.c */ … … 5292 5293 unsigned int rpccli_set_timeout(struct rpc_pipe_client *cli, 5293 5294 unsigned int timeout); 5295 bool rpccli_is_connected(struct rpc_pipe_client *rpc_cli); 5294 5296 bool rpccli_get_pwd_hash(struct rpc_pipe_client *cli, uint8_t nt_hash[16]); 5295 5297 NTSTATUS rpccli_anon_bind_data(TALLOC_CTX *mem_ctx, … … 5385 5387 struct rpc_cli_transport **presult); 5386 5388 struct cli_state *rpc_pipe_np_smb_conn(struct rpc_pipe_client *p); 5387 void rpccli_close_np_fd(struct rpc_pipe_client *p);5388 5389 5389 5390 /* The following definitions come from rpc_client/rpc_transport_smbd.c */ … … 5422 5423 NTSTATUS rpc_transport_sock_init(TALLOC_CTX *mem_ctx, int fd, 5423 5424 struct rpc_cli_transport **presult); 5424 int rpccli_set_sock_timeout(struct rpc_pipe_client *rpccli, int timeout);5425 void rpccli_close_sock_fd(struct rpc_pipe_client *rpccli);5426 bool rpc_pipe_tcp_connection_ok(struct rpc_pipe_client *rpccli);5427 5425 5428 5426 /* The following definitions come from rpc_client/cli_samr.c */ … … 5568 5566 uint32_t offered, 5569 5567 enum winreg_Type *type, 5570 union spoolss_PrinterData *data); 5568 uint32_t *needed_p, 5569 uint8_t **data_p); 5571 5570 WERROR rpccli_spoolss_enumprinterkey(struct rpc_pipe_client *cli, 5572 5571 TALLOC_CTX *mem_ctx, -
vendor/current/source3/include/smb.h
r414 r427 1724 1724 KERNEL_OPLOCK_CAPABILITY, 1725 1725 DMAPI_ACCESS_CAPABILITY, 1726 LEASE_CAPABILITY, 1727 KILL_CAPABILITY 1726 LEASE_CAPABILITY 1728 1727 }; 1729 1728 -
vendor/current/source3/include/version.h
r414 r427 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 5 4 #define SAMBA_VERSION_RELEASE 05 #define SAMBA_VERSION_OFFICIAL_STRING "3.5. 0"4 #define SAMBA_VERSION_RELEASE 2 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.5.2" 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.