diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-08 10:28:05 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-03-08 11:21:00 +0100 |
commit | 1611e63ae5abd323502d062d9474acd6648ae959 (patch) | |
tree | c22d8fc1a4d6ad6357d16c5d97acc768a7c5507c /source3/include | |
parent | 80fcd764213afc430f4b4cefec4e251e668bd0ba (diff) | |
download | samba-1611e63ae5abd323502d062d9474acd6648ae959.tar.gz samba-1611e63ae5abd323502d062d9474acd6648ae959.tar.bz2 samba-1611e63ae5abd323502d062d9474acd6648ae959.zip |
Convert wb_resp_write to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/wbc_async.h | 9 |
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_*/ |