summaryrefslogtreecommitdiff
path: root/source3/include/wbc_async.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-03-08 10:28:05 +0100
committerVolker Lendecke <vl@samba.org>2009-03-08 11:21:00 +0100
commit1611e63ae5abd323502d062d9474acd6648ae959 (patch)
treec22d8fc1a4d6ad6357d16c5d97acc768a7c5507c /source3/include/wbc_async.h
parent80fcd764213afc430f4b4cefec4e251e668bd0ba (diff)
downloadsamba-1611e63ae5abd323502d062d9474acd6648ae959.tar.gz
samba-1611e63ae5abd323502d062d9474acd6648ae959.tar.bz2
samba-1611e63ae5abd323502d062d9474acd6648ae959.zip
Convert wb_resp_write to tevent_req
Diffstat (limited to 'source3/include/wbc_async.h')
-rw-r--r--source3/include/wbc_async.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/source3/include/wbc_async.h b/source3/include/wbc_async.h
index 27af31f27a..5aac64d48e 100644
--- a/source3/include/wbc_async.h
+++ b/source3/include/wbc_async.h
@@ -60,10 +60,9 @@ struct tevent_req *wb_resp_read_send(TALLOC_CTX *mem_ctx,
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,
- struct tevent_context *ev, int fd,
- struct winbindd_response *wb_resp);
-
-wbcErr wb_resp_write_recv(struct async_req *req);
+struct tevent_req *wb_resp_write_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev, int fd,
+ struct winbindd_response *wb_resp);
+wbcErr wb_resp_write_recv(struct tevent_req *req);
#endif /*_WBC_ASYNC_H_*/