diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-23 23:30:18 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-03-24 13:23:41 +0100 |
commit | fa6283683981c61406967ede7ad48910b602f5a4 (patch) | |
tree | 997ca126eeaf7a3380916db3ada95695f57a0fdc /source3/include | |
parent | 8e0d9d002a4b0266c9d910bf7ce9c0510c89b09f (diff) | |
download | samba-fa6283683981c61406967ede7ad48910b602f5a4.tar.gz samba-fa6283683981c61406967ede7ad48910b602f5a4.tar.bz2 samba-fa6283683981c61406967ede7ad48910b602f5a4.zip |
Convert rpc_cli_transport->trans to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index f0c8ecc9dd..73a1d7b554 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -98,15 +98,15 @@ struct rpc_cli_transport { * trip. The transport implementation is free to set this to NULL, * cli_pipe.c will fall back to the explicit write/read routines. */ - struct async_req *(*trans_send)(TALLOC_CTX *mem_ctx, - struct event_context *ev, - uint8_t *data, size_t data_len, - uint32_t max_rdata_len, - void *priv); + struct tevent_req *(*trans_send)(TALLOC_CTX *mem_ctx, + struct event_context *ev, + uint8_t *data, size_t data_len, + uint32_t max_rdata_len, + void *priv); /** * Get the result from the trans_send operation. */ - NTSTATUS (*trans_recv)(struct async_req *req, TALLOC_CTX *mem_ctx, + NTSTATUS (*trans_recv)(struct tevent_req *req, TALLOC_CTX *mem_ctx, uint8_t **prdata, uint32_t *prdata_len); void *priv; }; |