mirror of
https://github.com/samba-team/samba.git
synced 2025-03-30 06:50:24 +03:00
librpc/rpc: add dcerpc_binding_handle_set_timeout()
metze
This commit is contained in:
parent
1df9fe81f5
commit
54d2dce7b1
@ -91,6 +91,12 @@ bool dcerpc_binding_handle_is_connected(struct dcerpc_binding_handle *h)
|
||||
return h->ops->is_connected(h);
|
||||
}
|
||||
|
||||
uint32_t dcerpc_binding_handle_set_timeout(struct dcerpc_binding_handle *h,
|
||||
uint32_t timeout)
|
||||
{
|
||||
return h->ops->set_timeout(h, timeout);
|
||||
}
|
||||
|
||||
struct dcerpc_binding_handle_raw_call_state {
|
||||
const struct dcerpc_binding_handle_ops *ops;
|
||||
uint8_t *out_data;
|
||||
|
@ -259,6 +259,9 @@ _DEPRECATED_ void dcerpc_binding_handle_set_sync_ev(struct dcerpc_binding_handle
|
||||
|
||||
bool dcerpc_binding_handle_is_connected(struct dcerpc_binding_handle *h);
|
||||
|
||||
uint32_t dcerpc_binding_handle_set_timeout(struct dcerpc_binding_handle *h,
|
||||
uint32_t timeout);
|
||||
|
||||
struct tevent_req *dcerpc_binding_handle_raw_call_send(TALLOC_CTX *mem_ctx,
|
||||
struct tevent_context *ev,
|
||||
struct dcerpc_binding_handle *h,
|
||||
|
@ -477,6 +477,9 @@ _DEPRECATED_ void dcerpc_binding_handle_set_sync_ev(struct dcerpc_binding_handle
|
||||
|
||||
bool dcerpc_binding_handle_is_connected(struct dcerpc_binding_handle *h);
|
||||
|
||||
uint32_t dcerpc_binding_handle_set_timeout(struct dcerpc_binding_handle *h,
|
||||
uint32_t timeout);
|
||||
|
||||
struct tevent_req *dcerpc_binding_handle_raw_call_send(TALLOC_CTX *mem_ctx,
|
||||
struct tevent_context *ev,
|
||||
struct dcerpc_binding_handle *h,
|
||||
|
Loading…
x
Reference in New Issue
Block a user