libcli/cldap: pass tevent_context to cldap_search_send()
[Samba/vl.git] / libcli / cldap / cldap.h
blob10c92959e0d30499d59d3efe55ef2868c4108379
1 /*
2 Unix SMB/CIFS implementation.
4 a async CLDAP library
6 Copyright (C) Andrew Tridgell 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "../libcli/netlogon/netlogon.h"
24 struct ldap_message;
25 struct tsocket_address;
26 struct cldap_socket;
28 struct cldap_incoming {
29 int recv_errno;
30 uint8_t *buf;
31 size_t len;
32 struct tsocket_address *src;
33 struct ldap_message *ldap_msg;
37 a general cldap search request
39 struct cldap_search {
40 struct {
41 const char *dest_address;
42 uint16_t dest_port;
43 const char *filter;
44 const char * const *attributes;
45 int timeout;
46 int retries;
47 } in;
48 struct {
49 struct ldap_SearchResEntry *response;
50 struct ldap_Result *result;
51 } out;
54 NTSTATUS cldap_socket_init(TALLOC_CTX *mem_ctx,
55 struct tevent_context *ev,
56 const struct tsocket_address *local_addr,
57 const struct tsocket_address *remote_addr,
58 struct cldap_socket **_cldap);
60 NTSTATUS cldap_set_incoming_handler(struct cldap_socket *cldap,
61 struct tevent_context *ev,
62 void (*handler)(struct cldap_socket *,
63 void *private_data,
64 struct cldap_incoming *),
65 void *private_data);
66 struct tevent_req *cldap_search_send(TALLOC_CTX *mem_ctx,
67 struct tevent_context *ev,
68 struct cldap_socket *cldap,
69 const struct cldap_search *io);
70 NTSTATUS cldap_search_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
71 struct cldap_search *io);
72 NTSTATUS cldap_search(struct cldap_socket *cldap, TALLOC_CTX *mem_ctx,
73 struct cldap_search *io);
76 a general cldap reply
78 struct cldap_reply {
79 uint32_t messageid;
80 struct tsocket_address *dest;
81 struct ldap_SearchResEntry *response;
82 struct ldap_Result *result;
85 NTSTATUS cldap_reply_send(struct cldap_socket *cldap, struct cldap_reply *io);
87 NTSTATUS cldap_empty_reply(struct cldap_socket *cldap,
88 uint32_t message_id,
89 struct tsocket_address *dst);
90 NTSTATUS cldap_error_reply(struct cldap_socket *cldap,
91 uint32_t message_id,
92 struct tsocket_address *dst,
93 int resultcode,
94 const char *errormessage);
97 a netlogon cldap request
99 struct cldap_netlogon {
100 struct {
101 const char *dest_address;
102 uint16_t dest_port;
103 const char *realm;
104 const char *host;
105 const char *user;
106 const char *domain_guid;
107 const char *domain_sid;
108 int acct_control;
109 uint32_t version;
110 bool map_response;
111 } in;
112 struct {
113 struct netlogon_samlogon_response netlogon;
114 } out;
117 struct tevent_req *cldap_netlogon_send(TALLOC_CTX *mem_ctx,
118 struct tevent_context *ev,
119 struct cldap_socket *cldap,
120 const struct cldap_netlogon *io);
121 NTSTATUS cldap_netlogon_recv(struct tevent_req *req,
122 TALLOC_CTX *mem_ctx,
123 struct cldap_netlogon *io);
124 NTSTATUS cldap_netlogon(struct cldap_socket *cldap,
125 TALLOC_CTX *mem_ctx,
126 struct cldap_netlogon *io);
128 NTSTATUS cldap_netlogon_reply(struct cldap_socket *cldap,
129 uint32_t message_id,
130 struct tsocket_address *dst,
131 uint32_t version,
132 struct netlogon_samlogon_response *netlogon);