diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-23 23:38:04 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-03-24 13:23:41 +0100 |
commit | 5f753e22f1f536e0e227db0f453809ad6cfacaf6 (patch) | |
tree | c4c07d33414abade2a2fb0e6ac5b62fc1de81be0 /source3/include | |
parent | fa6283683981c61406967ede7ad48910b602f5a4 (diff) | |
download | samba-5f753e22f1f536e0e227db0f453809ad6cfacaf6.tar.gz samba-5f753e22f1f536e0e227db0f453809ad6cfacaf6.tar.bz2 samba-5f753e22f1f536e0e227db0f453809ad6cfacaf6.zip |
Convert rpc_pipe_bind to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 5df5435f03..3b4b1cf3f1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5267,11 +5267,11 @@ NTSTATUS rpc_api_pipe_req(TALLOC_CTX *mem_ctx, struct rpc_pipe_client *cli, uint8 op_num, prs_struct *in_data, prs_struct *out_data); -struct async_req *rpc_pipe_bind_send(TALLOC_CTX *mem_ctx, - struct event_context *ev, - struct rpc_pipe_client *cli, - struct cli_pipe_auth_data *auth); -NTSTATUS rpc_pipe_bind_recv(struct async_req *req); +struct tevent_req *rpc_pipe_bind_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + struct rpc_pipe_client *cli, + struct cli_pipe_auth_data *auth); +NTSTATUS rpc_pipe_bind_recv(struct tevent_req *req); NTSTATUS rpc_pipe_bind(struct rpc_pipe_client *cli, struct cli_pipe_auth_data *auth); unsigned int rpccli_set_timeout(struct rpc_pipe_client *cli, |