diff options
author | Volker Lendecke <vl@samba.org> | 2009-04-05 20:48:16 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-04-06 21:32:06 +0200 |
commit | dec928e884f492c7a5e5e8c87e2ff0c1944da5f1 (patch) | |
tree | ab62ee13dfe149e1dc7bd9719e2d64c79d261a54 /source3/include | |
parent | 0a4cdad324291d6c91b569c4fc8362a8383965fe (diff) | |
download | samba-dec928e884f492c7a5e5e8c87e2ff0c1944da5f1.tar.gz samba-dec928e884f492c7a5e5e8c87e2ff0c1944da5f1.tar.bz2 samba-dec928e884f492c7a5e5e8c87e2ff0c1944da5f1.zip |
Convert cli_echo to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 0e6dcc7447..fc1d4618a3 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2444,10 +2444,10 @@ void cli_sockopt(struct cli_state *cli, const char *options); uint16 cli_setpid(struct cli_state *cli, uint16 pid); bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive); bool cli_send_keepalive(struct cli_state *cli); -struct async_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev, - struct cli_state *cli, uint16_t num_echos, - DATA_BLOB data); -NTSTATUS cli_echo_recv(struct async_req *req); +struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev, + struct cli_state *cli, uint16_t num_echos, + DATA_BLOB data); +NTSTATUS cli_echo_recv(struct tevent_req *req); NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data); bool cli_ucs2(struct cli_state *cli); bool is_andx_req(uint8_t cmd); |