2 Unix SMB/CIFS implementation.
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.h"
25 struct tsocket_address
;
28 struct cldap_incoming
{
32 struct tsocket_address
*src
;
33 struct ldap_message
*ldap_msg
;
37 a general cldap search request
41 const char *dest_address
;
44 const char * const *attributes
;
49 struct ldap_SearchResEntry
*response
;
50 struct ldap_Result
*result
;
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 void (*handler
)(struct cldap_socket
*,
63 struct cldap_incoming
*),
65 struct tevent_req
*cldap_search_send(TALLOC_CTX
*mem_ctx
,
66 struct cldap_socket
*cldap
,
67 const struct cldap_search
*io
);
68 NTSTATUS
cldap_search_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
69 struct cldap_search
*io
);
70 NTSTATUS
cldap_search(struct cldap_socket
*cldap
, TALLOC_CTX
*mem_ctx
,
71 struct cldap_search
*io
);
78 struct tsocket_address
*dest
;
79 struct ldap_SearchResEntry
*response
;
80 struct ldap_Result
*result
;
83 NTSTATUS
cldap_reply_send(struct cldap_socket
*cldap
, struct cldap_reply
*io
);
85 NTSTATUS
cldap_empty_reply(struct cldap_socket
*cldap
,
87 struct tsocket_address
*dst
);
88 NTSTATUS
cldap_error_reply(struct cldap_socket
*cldap
,
90 struct tsocket_address
*dst
,
92 const char *errormessage
);
95 a netlogon cldap request
97 struct cldap_netlogon
{
99 const char *dest_address
;
104 const char *domain_guid
;
105 const char *domain_sid
;
111 struct netlogon_samlogon_response netlogon
;
115 struct tevent_req
*cldap_netlogon_send(TALLOC_CTX
*mem_ctx
,
116 struct cldap_socket
*cldap
,
117 const struct cldap_netlogon
*io
);
118 NTSTATUS
cldap_netlogon_recv(struct tevent_req
*req
,
119 struct smb_iconv_convenience
*iconv_convenience
,
121 struct cldap_netlogon
*io
);
122 NTSTATUS
cldap_netlogon(struct cldap_socket
*cldap
,
123 struct smb_iconv_convenience
*iconv_convenience
,
125 struct cldap_netlogon
*io
);
127 NTSTATUS
cldap_netlogon_reply(struct cldap_socket
*cldap
,
128 struct smb_iconv_convenience
*iconv_convenience
,
130 struct tsocket_address
*dst
,
132 struct netlogon_samlogon_response
*netlogon
);