diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-08 10:20:27 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-03-08 11:21:00 +0100 |
commit | 80fcd764213afc430f4b4cefec4e251e668bd0ba (patch) | |
tree | a636c5c55ceaf078f3d615f62431a8589897bc10 /source3/include | |
parent | 0a3a7d53eb4d573aa6b1a1b9a9d81b848e37ac7f (diff) | |
download | samba-80fcd764213afc430f4b4cefec4e251e668bd0ba.tar.gz samba-80fcd764213afc430f4b4cefec4e251e668bd0ba.tar.bz2 samba-80fcd764213afc430f4b4cefec4e251e668bd0ba.zip |
Convert wb_resp_read to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/wbc_async.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/include/wbc_async.h b/source3/include/wbc_async.h index b355c8fc9f..27af31f27a 100644 --- a/source3/include/wbc_async.h +++ b/source3/include/wbc_async.h @@ -55,10 +55,9 @@ struct tevent_req *wb_req_write_send(TALLOC_CTX *mem_ctx, struct winbindd_request *wb_req); wbcErr wb_req_write_recv(struct tevent_req *req); -struct async_req *wb_resp_read_send(TALLOC_CTX *mem_ctx, - struct tevent_context *ev, int fd); - -wbcErr wb_resp_read_recv(struct async_req *req, TALLOC_CTX *mem_ctx, +struct tevent_req *wb_resp_read_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, int fd); +wbcErr wb_resp_read_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, struct winbindd_response **presp); struct async_req *wb_resp_write_send(TALLOC_CTX *mem_ctx, |