summaryrefslogtreecommitdiff
path: root/source3/include/proto.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-02-26 12:34:39 +0100
committerVolker Lendecke <vl@samba.org>2009-02-26 13:04:34 +0100
commita777b4d50136dc52b69756fdfd6d7024270fe040 (patch)
treee428a565d88a936b263501c8b92d8f374a13ecd9 /source3/include/proto.h
parent408cde8fcaac96b82d1cb4d638d790122900cff0 (diff)
downloadsamba-a777b4d50136dc52b69756fdfd6d7024270fe040.tar.gz
samba-a777b4d50136dc52b69756fdfd6d7024270fe040.tar.bz2
samba-a777b4d50136dc52b69756fdfd6d7024270fe040.zip
Convert open_socket_out to tevent_req
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r--source3/include/proto.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 559d62fec3..3fb57e44d4 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -1423,12 +1423,12 @@ int open_socket_in(int type,
bool rebind);
NTSTATUS open_socket_out(const struct sockaddr_storage *pss, uint16_t port,
int timeout, int *pfd);
-struct async_req *open_socket_out_send(TALLOC_CTX *mem_ctx,
- struct event_context *ev,
- const struct sockaddr_storage *pss,
- uint16_t port,
- int timeout);
-NTSTATUS open_socket_out_recv(struct async_req *req, int *pfd);
+struct tevent_req *open_socket_out_send(TALLOC_CTX *mem_ctx,
+ struct event_context *ev,
+ const struct sockaddr_storage *pss,
+ uint16_t port,
+ int timeout);
+NTSTATUS open_socket_out_recv(struct tevent_req *req, int *pfd);
struct async_req *open_socket_out_defer_send(TALLOC_CTX *mem_ctx,
struct event_context *ev,
struct timeval wait_time,