summaryrefslogtreecommitdiff
path: root/nsswitch/libwbclient/wbc_util.c
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2009-03-24 22:51:11 +0100
committerKai Blin <kai@samba.org>2010-02-11 23:56:32 +0100
commit3204113efe0eccbb502914699cb5a4ddcf4efdfa (patch)
treea3b39af4e2d1d85d33a2e762ca7d8803abf82827 /nsswitch/libwbclient/wbc_util.c
parentf9d041ccd358f6e91a44369c70eebcbf605de2cd (diff)
downloadsamba-3204113efe0eccbb502914699cb5a4ddcf4efdfa.tar.gz
samba-3204113efe0eccbb502914699cb5a4ddcf4efdfa.tar.bz2
samba-3204113efe0eccbb502914699cb5a4ddcf4efdfa.zip
libwbclient: Add async wbcPing_send/_recv
Diffstat (limited to 'nsswitch/libwbclient/wbc_util.c')
-rw-r--r--nsswitch/libwbclient/wbc_util.c80
1 files changed, 79 insertions, 1 deletions
diff --git a/nsswitch/libwbclient/wbc_util.c b/nsswitch/libwbclient/wbc_util.c
index 24699e91c4..ddef8b644d 100644
--- a/nsswitch/libwbclient/wbc_util.c
+++ b/nsswitch/libwbclient/wbc_util.c
@@ -27,11 +27,89 @@
+struct wbc_ping_state {
+ struct winbindd_request req;
+};
+
+static void wbcPing_done(struct tevent_req *subreq);
+
+/** @brief Ping winbind to see if the service is up and running
+ *
+ * @param mem_ctx talloc context to allocate the request from
+ * @param ev event context to use for async operation
+ * @param wb_ctx winbind context to use
+ *
+ * @return Async request on successful dispatch of the request, NULL on error
+ */
+
+struct tevent_req *wbcPing_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct wb_context *wb_ctx)
+{
+ struct tevent_req *req, *subreq;
+ struct wbc_ping_state *state;
+
+ req = tevent_req_create(mem_ctx, &state, struct wbc_ping_state);
+ if (req == NULL) {
+ return NULL;
+ }
+
+ ZERO_STRUCT(state->req);
+
+ state->req.cmd = WINBINDD_PING;
+ subreq = wb_trans_send(state, ev, wb_ctx, false, &state->req);
+ if (tevent_req_nomem(subreq, req)) {
+ return tevent_req_post(req, ev);
+ }
+
+ tevent_req_set_callback(subreq, wbcPing_done, req);
+ return req;
+}
+
+static void wbcPing_done(struct tevent_req *subreq)
+{
+ struct tevent_req *req = tevent_req_callback_data(
+ subreq, struct tevent_req);
+ struct wbc_ping_state *state = tevent_req_data(
+ req, struct wbc_ping_state);
+ struct winbindd_response *resp;
+ wbcErr wbc_status;
+
+ wbc_status = wb_trans_recv(subreq, state, &resp);
+ TALLOC_FREE(subreq);
+ if (!WBC_ERROR_IS_OK(wbc_status)) {
+ tevent_req_error(req, wbc_status);
+ return;
+ }
+ TALLOC_FREE(resp);
+
+ tevent_req_done(req);
+}
+
+/** @brief Receive ping response from winbind
+ *
+ * @param req async request sent in #wbcPing_send
+ *
+ * @return NT_STATUS_OK on success, an error status on error.
+ */
+
+wbcErr wbcPing_recv(struct tevent_req *req)
+{
+ wbcErr wbc_status;
+
+ if (tevent_req_is_wbcerr(req, &wbc_status)) {
+ tevent_req_received(req);
+ return wbc_status;
+ }
+
+ tevent_req_received(req);
+ return WBC_ERR_SUCCESS;
+}
+
/** @brief Ping winbindd to see if the daemon is running
*
* @return #wbcErr
**/
-
wbcErr wbcPing(void)
{
struct winbindd_request request;