diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-23 22:49:29 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-03-24 13:23:40 +0100 |
commit | 1724f2ff316d20dd7e67fed59f467d4a3e187114 (patch) | |
tree | 7e5e92c5d22ccf260acde938c36acf662e1f5331 /source3/include | |
parent | f88990ec7ec92f0b8371419bfdf777d1d624abf9 (diff) | |
download | samba-1724f2ff316d20dd7e67fed59f467d4a3e187114.tar.gz samba-1724f2ff316d20dd7e67fed59f467d4a3e187114.tar.bz2 samba-1724f2ff316d20dd7e67fed59f467d4a3e187114.zip |
Convert rpc_api_pipe_req to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d15e45a874..5df5435f03 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5256,12 +5256,12 @@ NTSTATUS rpccli_netlogon_set_trust_password(struct rpc_pipe_client *cli, /* The following definitions come from rpc_client/cli_pipe.c */ -struct async_req *rpc_api_pipe_req_send(TALLOC_CTX *mem_ctx, - struct event_context *ev, - struct rpc_pipe_client *cli, - uint8_t op_num, - prs_struct *req_data); -NTSTATUS rpc_api_pipe_req_recv(struct async_req *req, TALLOC_CTX *mem_ctx, +struct tevent_req *rpc_api_pipe_req_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + struct rpc_pipe_client *cli, + uint8_t op_num, + prs_struct *req_data); +NTSTATUS rpc_api_pipe_req_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, prs_struct *reply_pdu); NTSTATUS rpc_api_pipe_req(TALLOC_CTX *mem_ctx, struct rpc_pipe_client *cli, uint8 op_num, |