diff options
author | Volker Lendecke <vl@samba.org> | 2009-04-08 21:53:16 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-04-08 22:17:04 +0200 |
commit | 8a2112c942d312ca855c0301baab825cabd97caa (patch) | |
tree | 5aa60e00a30af45e5f00982d08c5b02ae139e693 /source3/include | |
parent | bfacecc17b6f12fd80aa915bcfdbf2af7fb674e3 (diff) | |
download | samba-8a2112c942d312ca855c0301baab825cabd97caa.tar.gz samba-8a2112c942d312ca855c0301baab825cabd97caa.tar.bz2 samba-8a2112c942d312ca855c0301baab825cabd97caa.zip |
Convert rpc_cli_smbd_conn_init to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index ad607cee69..2172f2abd9 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5405,13 +5405,13 @@ struct cli_state *rpc_pipe_np_smb_conn(struct rpc_pipe_client *p); /* The following definitions come from rpc_client/rpc_transport_smbd.c */ -struct async_req *rpc_cli_smbd_conn_init_send(TALLOC_CTX *mem_ctx, - struct event_context *ev, - void (*stdout_callback)(char *buf, - size_t len, - void *priv), - void *priv); -NTSTATUS rpc_cli_smbd_conn_init_recv(struct async_req *req, +struct tevent_req *rpc_cli_smbd_conn_init_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + void (*stdout_callback)(char *buf, + size_t len, + void *priv), + void *priv); +NTSTATUS rpc_cli_smbd_conn_init_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, struct rpc_cli_smbd_conn **pconn); NTSTATUS rpc_cli_smbd_conn_init(TALLOC_CTX *mem_ctx, |